当我运行我的代码时,我得到了那个错误:
Unable to get value of the property 'unobtrusive': object is null or undefined
这很正常,但我正在添加我需要的所有 jquery 东西:
jquery.validate-vsdoc.js
jquery.validate.js
jquery.validate.min.js
jquery.validate.unobtrusive.js
jquery.validate.unobtrusive.min.js
jquery.unobtrusive-ajax.js
jquery.unobtrusive-ajax.min.js
我将其加载到我的主窗体上:
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/jqueryui")
@Scripts.Render("~/bundles/jqueryval")
我的捆绑配置有:
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
"~/Scripts/jquery-ui-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.unobtrusive*",
"~/Scripts/jquery.validate*"));
我Script
的文件夹中有所有相关的文件。
为什么我会收到此错误?如果您需要查看任何文件,请发表评论,我很乐意发布
编辑:
脚本已加载(我检查过)这一行给出了错误:
jQuery.validator.unobtrusive.prototype.parse.call(this, selector);
错误:
SCRIPT5007: Unable to get value of the property 'unobtrusive': object is null or undefined