未捕获的类型错误:无法设置未定义的属性“unobtrusive" [英] Uncaught TypeError: Cannot set property 'unobtrusive' of undefined

查看:28
本文介绍了未捕获的类型错误:无法设置未定义的属性“unobtrusive"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Chrome JScript 调试器中收到此错误.当我为下面的脚本切换到 Microsoft CDN 时发生了这种情况.

I am getting this error in the Chrome JScript debugger. It happened when I switched to the Microsoft CDNs for the scripts below.

我不知道如何解决这个保存问题,不再使用 CDN.

I'm not sure how to work around this save, not using the CDNs anymore.

jquery.validate.unobtrusive.min.js:5未捕获的类型错误:无法设置未定义的属性 'unobtrusive'

jquery.validate.unobtrusive.min.js:5 Uncaught TypeError: Cannot set property 'unobtrusive' of undefined

<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/themes/start/jquery-ui.css" rel='stylesheet' type='text/css'>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.4.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-1.7-development-only.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.11/jquery-ui.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmplPlus.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/mvc/3.0/jquery.validate.unobtrusive.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/mvc/3.0/jquery.unobtrusive-ajax.min.js"></script>

推荐答案

发生此错误的另一个原因是,如果您在 jquery.validate 之前加载不显眼的脚本.

Another reason this error can occur is if you load the unobtrusive script before jquery.validate.

所以,

<script src="/scripts/jquery.validate.min.js" type="text/javascript"></script>
<script src="/scripts/jquery.validate.unobtrusive.min.js" type="text/javascript"></script>

没问题,但是:

<script src="/scripts/jquery.validate.unobtrusive.min.js" type="text/javascript"></script>
<script src="/scripts/jquery.validate.min.js" type="text/javascript"></script>

将给出无法设置未定义的属性 'unobtrusive'"错误.

will give the "Cannot set property 'unobtrusive' of undefined" error.

这篇关于未捕获的类型错误:无法设置未定义的属性“unobtrusive"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆