jQuery Uncaught TypeError: Cannot read property 'msie' of undefined in drupal
jQuery Uncaught TypeError: Cannot read property 'msie' of undefined in drupal
我在我的 Drupal 网站上遇到以下错误:
caught TypeError: Cannot read property 'version' of undefined
jquery.formalize.js?nkmwqx:13 Uncaught TypeError: Cannot read property 'msie' of undefined
caught TypeError: Cannot read property 'version' of undefined
jquery.formalize.js?nkmwqx:13 Uncaught TypeError: Cannot read property 'msie' of undefined
jquery.bgiframe.min.js?v=2.1:11 Uncaught TypeError: Cannot read property 'msie' of undefined
可能您的 Drupal 网站中安装了 jQuery update 模块。
尝试禁用它。您也可以添加 jQuery migrate.
此问题与 jquery 版本有关。请查看以下链接。
Uncaught TypeError: Cannot read property 'msie' of undefined - jQuery tools
Uncaught TypeError: Cannot read property 'msie' of undefined
出现此问题是因为“$.browser”属性 在 jQuery 1.9.0 中被删除了。您可以通过添加以下代码来解决此问题:
<script>
jQuery.browser = {};
(function () {
jQuery.browser.msie = false;
jQuery.browser.version = 0;
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
jQuery.browser.msie = true;
jQuery.browser.version = RegExp.;
}
})();
</script>
我在我的 Drupal 网站上遇到以下错误:
caught TypeError: Cannot read property 'version' of undefined
jquery.formalize.js?nkmwqx:13 Uncaught TypeError: Cannot read property 'msie' of undefined
caught TypeError: Cannot read property 'version' of undefined
jquery.formalize.js?nkmwqx:13 Uncaught TypeError: Cannot read property 'msie' of undefined
jquery.bgiframe.min.js?v=2.1:11 Uncaught TypeError: Cannot read property 'msie' of undefined
可能您的 Drupal 网站中安装了 jQuery update 模块。
尝试禁用它。您也可以添加 jQuery migrate.
此问题与 jquery 版本有关。请查看以下链接。
Uncaught TypeError: Cannot read property 'msie' of undefined - jQuery tools
Uncaught TypeError: Cannot read property 'msie' of undefined
出现此问题是因为“$.browser”属性 在 jQuery 1.9.0 中被删除了。您可以通过添加以下代码来解决此问题:
<script>
jQuery.browser = {};
(function () {
jQuery.browser.msie = false;
jQuery.browser.version = 0;
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
jQuery.browser.msie = true;
jQuery.browser.version = RegExp.;
}
})();
</script>