enter键触发事件

 

	jQuery(function($) {
		$("html").live("keydown",function(e){
			if(e.keyCode == 13){
				doSearch();
			}
		});
	});

 

 

你可能感兴趣的:(enter检索)