我打开了一个jquery模式对话框,其中有两个文本框和一个按钮
<table cellpadding="0" cellspacing="0">
<tr>
<td align="center"><input name="" type="text" value="" title="User Name" class="width190 enter_popup" id="txtUserName" onfocus="txtFocus(this)" onblur="txtFBlur(this,'0')"/></td>
<td align="center"><input name="" type="password" value="" title="Password" class="width190 enter_popup" id="txtPassword" onfocus="txtFocus(this)" onblur="txtFBlur(this,'1')"/></td>
</tr>
<tr>
<td colspan="2" align="center"><input name="" type="submit" class="blue_btn" value="Sign In" id="btnLogIn" onclick="javascript:return LogIn()"/></td>
</tr>
</table>
现在在我的脚本中我正在调用LogIn函数
$(function () {
$(".enter_popup").keypress(function (e) {
if (e.keyCode == 13) {
if ($(this).attr('id') == "txtUserName" || $(this).attr('id') == "txtPassword") {
LogIn();
}
}
});
});
function LogIn() {
var username = $('#txtUserName').val();
var password = $('#txtPassword').val();
}
但是按键并没有被解雇..任何想法为什么以及可能的解决方案是什么?
答案 0 :(得分:3)
您需要对动态创建的元素使用事件委派
$(document).on('keypress','.enter_popup',function(){
/*Your code*/
});
答案 1 :(得分:0)
尝试使用Keydown或Keyup事件:
$(function () {
$(".enter_popup").keyup(function (e) {
if (e.keyCode == 13) {
if ($(this).attr('id') == "txtUserName" || $(this).attr('id') == "txtPassword") {
LogIn();
}
}
});
答案 2 :(得分:0)
我发现将焦点放在模式上是一个更好的解决方案,它对我有用。
为此,您必须向模态容器中添加一个tabindex
参数,然后使用JavaScript设置其焦点。完成后,它可以接收键盘事件:https://stackoverflow.com/a/6633271/2873507