$(document).ready(function(){
$("#search").submit(function() {
if ($("#Keyword").val() == "" || $("#Keyword").val() == "请输入关键字...")
{
alert("关键字一定要的哦！");
$("#Keyword").focus(); 
return false;}
return true;
}
);





$("#Keyword").focus( function () { 

if ($(this).val() == "请输入关键字..."){


$(this).val("");} }); 


$("#Keyword").blur( function () { 

if ($(this).val() == ""){


$(this).val("请输入关键字...");} });








}
);


