jQuery实现当按下回车键时绑定点击事件

当按下回车键时,绑定按钮点击事件代码如下,通过检测按下的键值,回车键keycode为13,判断是否是回车键,然后完成相应的方法。

复制代码 代码如下:


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

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

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdyssy.html