document.onkeydown = function (e) { // 回車提交表單
// 兼容FF和IE和Opera
var theEvent = window.event || e;
var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
if (code == 13) {
queryInfo();
}
}
$("#queryTable").bind("keydown",function(e){
// 兼容FF和IE和Opera
var theEvent = e || window.event;
var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
if (code == 13) {
//回車執行查詢
$("#queryButton").click();
}
});
//回車事件綁定
$('#search_input').bind('keyup', function(event) {
if (event.keyCode == "13") {
//回車執行查詢
$('#search_button').click();
}
});