jQuery 回车事件enter使用示例
时间:2021-05-29 07:44:09|栏目:jquery|点击: 次
eg:
//点击enter,用户登陆
$("#txtLoginPwd").keydown(function (e) {
if (e.which == 13) {
UserLogin();
}
});
注意:是“keydown”而不是“keypress”
复制代码 代码如下:
//点击enter,用户登陆
$("#txtLoginPwd").keydown(function (e) {
if (e.which == 13) {
UserLogin();
}
});
注意:是“keydown”而不是“keypress”
上一篇:jQuery live
栏 目:jquery
本文标题:jQuery 回车事件enter使用示例
本文地址:http://www.codeinn.net/misctech/131051.html