﻿$(function(){
$(document).bind("contextmenu selectstart", function() { return false; });
	$('#keys').bind({
        focus:function(){
			$(this).val('');
		},
		blur:function(){
			if(0==$.trim($(this).val()).length){
				$(this).val('请输入关键字！');
			}
		}
    })
	var form=$('form:first'),keys=$('#keys');
	form.submit(function(){
		if(0==$.trim(keys.val()).length){
			alert('请输入关键字！');
			return false;
		}
		$(this).submit();
		return false;
	});
});
