jQuery:提交表单前判断表单是否被修改过
Posted 飞虎一号
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery:提交表单前判断表单是否被修改过相关的知识,希望对你有一定的参考价值。
表单加载完成后执行 :
//表单中包含input(text,checkbox,hidden),select,radio,
$("#editWithdrawAutoApprovedConfig :input,#editWithdrawAutoApprovedConfig :checkbox,#editWithdrawAutoApprovedConfig :radio,#editWithdrawAutoApprovedConfig select").change(function() {
$("#editWithdrawAutoApprovedConfig").data("changed",true);
});
提交表单时执行:
if (!$("#editWithdrawAutoApprovedConfig").data("changed")) {
alert("表单未做任何修改!");
return false;
}
以上是关于jQuery:提交表单前判断表单是否被修改过的主要内容,如果未能解决你的问题,请参考以下文章
jquery AJAX提交前beforesend无效,大家帮我看下谢谢。