jQuery UI dialog + Ajax fails with IE 6-7-8

我只是一个虾纸丫 提交于 2019-12-05 14:49:12

There's a conflict between jQuery 1.4 and Sarissa.

Is sarissa.js included on the page?

Similar reports:

https://jira.jboss.org/jira/browse/RF-8282

http://code.google.com/p/google-web-toolkit/issues/detail?id=3608

http://code.google.com/p/jstree/issues/detail?id=430

This change to Sarissa seems to work.

// _SARISSA_XMLHTTP_PROGID = Sarissa.pickRecentProgID(["Msxml2.XMLHTTP.6.0", "MSXML2.XMLHTTP.3.0", "MSXML2.XMLHTTP", "Microsoft.XMLHTTP"]);
 _SARISSA_XMLHTTP_PROGID = Sarissa.pickRecentProgID(["MSXML2.XMLHTTP", "Microsoft.XMLHTTP"]); 

Have you tried to us the Developer tools in IE to step through your code and see what is getting executed and what the variable values are? IE 8 has a great set of tools built right in by hitting F12.

Working with the Internet Explorer Developer Tools

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