$("#" + actName + "frmEmail" + clientUserId).submit(function (ex) {
ex.preventDefault();
答案 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;
});