jQuery doesn't work in Nokia E71 browser

泄露秘密 提交于 2020-01-24 19:00:06

问题


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.


回答1:


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);




回答2:


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.



来源:https://stackoverflow.com/questions/5299636/jquery-doesnt-work-in-nokia-e71-browser

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!