jQuery 在诺基亚 E71 浏览器中不起作用
I'm unable to use jQuery 1.5.2 with Nokia E71 browser.
I found this problem reported in jQuery bug tracker without future fix.
Is there any possible workaround?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了在诺基亚 E71 移动浏览器中使用 jQuery,我 更改了 jQuery 代码。
将
div.attachEvent("onclick", function click() {
替换为
div.attachEvent("onclick", function(){
)并
替换
div.detachEvent( "onclick", click);
与
div.detachEvent("onclick",arguments.callee);
In order to use jQuery with Nokia E71 mobile browser I changed jQuery code.
Replace
div.attachEvent("onclick", function click() {
with
div.attachEvent("onclick", function(){
And
Replace
div.detachEvent("onclick", click);
with
div.detachEvent("onclick", arguments.callee);
诺基亚E71采用的是S60第三代操作系统。
如果您使用 jQuery Mobile 框架构建触摸友好的 Web 应用程序/网站,那么您可以使用此列表考虑在内。
它表明该操作系统的第三代以“非常低质量”呈现您的页面(当然,如果您使用该框架)。
请向我们发布您正在试验的代码和您正在使用的 jquery 版本。
问候。
Nokia E71 is using the S60 third generation OS.
If you are using tje jQuery Mobile framework to build touch-friendly web applications/sites, then you have this list to take in consideration.
It tells that the third generation of that OS renders your pages in "very low quality" (if you use that framework of course).
Please, post us the code you are experimenting and jquery version you are using.
Regards.