如何在点击进入时停止提交表单的默认浏览器行为?

时间:2013-11-16 04:50:04

标签: jquery asp.net-mvc

    $("#" + actName + "frmEmail" + clientUserId).submit(function (ex) {
            ex.preventDefault();

2 个答案:

答案 0 :(得分:0)

例如:

 $("#" + actName + "frmEmail" + clientUserId).submit(function (ex) {
  if(...){
      ...;
  return false;
  }
 else{
  ...
  }

})

答案 1 :(得分:0)

我通过处理表格上的按键事件找到了解决方案。 $("#" + actName + "frmEmail" + clientUserId).keypress(function (e) {                 var key = e.which;                 if (key == 13)
{                    return false; }                 return true; });