取消回车自动提交表单
This commit is contained in:
@ -53,6 +53,11 @@ $(function() {
|
||||
if (!$(".popover:hover").length) $(_this).popover("hide");
|
||||
}, 100);
|
||||
});
|
||||
|
||||
// 取消回车自动提交表单
|
||||
$(document).on("keypress", "form", function(event) {
|
||||
return event.keyCode != 13;
|
||||
});
|
||||
|
||||
// laydate 时间控件绑定
|
||||
if ($(".select-time").length > 0) {
|
||||
|
Reference in New Issue
Block a user