jQuery 回车事件enter使用示例
发布时间:2016-12-30 来源:查字典编辑
摘要:eg:复制代码代码如下://点击enter,用户登陆$("#txtLoginPwd").keydown(function(e){if(e.w...
eg:
复制代码 代码如下:
//点击enter,用户登陆
$("#txtLoginPwd").keydown(function (e) {
if (e.which == 13) {
UserLogin();
}
});
注意:是“keydown”而不是“keypress”