2010年3月5日 星期五

jquery自動登入!!抓按鍵事件

$(document).keydown(function(e){
//keyCode為Enter
if (e.keyCode == 13) {
$("#form1").submit();
}
});

沒有留言: