如何使用Jquery在MVC3中按Enter键设置TabIndex

时间:2012-01-22 11:52:50

标签: asp.net-mvc-3

我的问题是,当我按任何文本框中的输入按钮或放置形式时,光标自动转到创建按钮并按下它.....我在mvc3工作,所以请告诉我任何解决方案......

1 个答案:

答案 0 :(得分:1)

您可以订阅表单的.keypress()事件,如果是Enter则取消它:

$(function() {
    // subscribe to the keypress event of the form
    $('form').keypress(function(e) {
        if (e.which == 13) {
            // if Enter was pressed cancel the default action and
            // prevent the form from submitting
            return false;
        }
    });
});