本文主要是介绍jquery.validate.js:133 Uncaught TypeError: Cannot read property ‘form‘ of undefined,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在给字段增加校验规则时候,这个字段必须存在,否在会报如上错误
//给有错误的添加校验规则$("#" + jsonstr[i].colum_name + "_edit").rules( "add", {required: true,messages: {required: "数据未修复"}});
解决方法是:在添加规则前判断下该id是否存在
if( $("#" + jsonstr[i].colum_name + "_edit").length>0){$("#" + jsonstr[i].colum_name + "_edit").rules( "add", {required: true,messages: {required: "数据未修复"}});}
这篇关于jquery.validate.js:133 Uncaught TypeError: Cannot read property ‘form‘ of undefined的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!