输入keypress上的jQuery msgBox

时间:2015-02-06 09:55:46

标签: javascript jquery msgbox

我有一个jQuery msgBox来获取usrID& PassWD使用按钮"登录"。我想将按钮点击功能与" Enter"相关联。按键。当按下Enter时,它应该与登录按钮上的onclick相同。

$.msgBox({
     type: "prompt",
     title: "Please Enter Your User Name & Password",
     inputs: [
          {header: "User Name*", type: "text", name: "userName", value: spl[0]},
          {header: "Password*", type: "password", name: "password"}
     ],
     buttons: [{value: "Login", type: "submit"}],
     success: function(result, values) {
           alert("Thanks...");
     }
});

2 个答案:

答案 0 :(得分:0)

$(document).keypress(function(e) {
    if(e.which == 13 && $("input[name='password']").val() != ""){
        $("input[name='Concluir']").click();
    }
});

我使用此代码解决了这个问题。

答案 1 :(得分:0)

以下内容应该有效:

$(document).keypress(function (e) {
    if (e.which == 13 && $("input[name='password']").val() != "") {
        $("input[name='Login']").click();
    }
});