1. 程式人生 > >為頁面新增enter回車事件

為頁面新增enter回車事件

一、頁面載入完成後就新增該事件

//給enter鍵新增事件

$(document).ready(function(e) {
$(this).keydown(function (e){
if(e.which == "13"){
showSelectResult();//觸發該事件
}
})

});

二、為某元素新增

<script>
$(function(){
$(document).keydown(function(event){
if(event.keyCode==13){
$("#mouse").click();
}
});

$("#mouse").click(function(){
alert("nihao");
});
})
</script>