尝试在我的诺基亚上使用 jQuery 时出现此错误:TypeError:“Object $ (表达式 $ 的结果) 不允许调用。”
这是一个简化的演示:http://jsbin.com/emugo3
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
try {
$(function () {
$.noop();
$("#hello").text("it works");
});
} catch (e) {
alert(e.message);
}
</script>
我手机浏览器的用户代理是:
NokiaE71x/ATT.03.28 Mozilla/5.0 SymbianOS/9.3; U; [en]; Series60/3.2; Profile/MIDP-2.1 Configuration/CLDC-1.1 AppleWebKit/413 (KHTML, like Gecko) Safari/413
我尝试用谷歌搜索这个错误,我看到使用旧版本 Safari 的人也有同样的问题,但我还没有看到解决方案。有谁知道我可以尝试什么?
Here's a simplified demo: http://jsbin.com/emugo3
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
try {
$(function () {
$.noop();
$("#hello").text("it works");
});
} catch (e) {
alert(e.message);
}
</script>
The user agent for my phone's browser is:
NokiaE71x/ATT.03.28 Mozilla/5.0 SymbianOS/9.3; U; [en]; Series60/3.2; Profile/MIDP-2.1 Configuration/CLDC-1.1 AppleWebKit/413 (KHTML, like Gecko) Safari/413
I've tried googling this error and I've seen people with really old versions of Safari having the same issue, but I haven't seen a solution yet. Does anyone know anything I can try?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我有用的解决方案是使用 jQuery 1.2.6 版本:
http://jsbin.com/emugo3/14
这是仍然适用于我的手机的最新版本。
The solution that worked for me is to use version 1.2.6 of jQuery:
http://jsbin.com/emugo3/14
That was the latest version that still works with my phone.