码迷,mamicode.com
首页 > Web开发 > 详细

jQuery:提交表单前判断表单是否被修改过

时间:2016-12-08 18:25:27      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:on()   cti   return   turn   edit   表单   function   alert   修改   

表单加载完成后执行 :  

   //表单中包含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:提交表单前判断表单是否被修改过

标签:on()   cti   return   turn   edit   表单   function   alert   修改   

原文地址:http://www.cnblogs.com/shz365/p/6145733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!