jquery绑定回车键发送(登录)
$(function(){
$(document).keydown(function(e){
if(e.keyCode==13){
$("#mouse").click();
}
});
$("#mouse").click(function(){
alert("hello world!");
});
})
1
$(function(){ |
2 |
$(document).keydown(function(e){ |
3 |
if(e.keyCode==13){ |
4 |
$("#mouse").click(); |
5 |
} |
6 |
}); |
7 |
8 |
$("#mouse").click(function(){ |
9 |
alert("hello world!"); |
10 |
}); |
11 |
}) |

浙公网安备 33010602011771号