jQuery/Ajax 内容未在资源管理器中显示/加载
我一直在使用几乎所有的 jquery/javascript 来开发模板。我主要是在学习jquery/javascript。我的网站位于 http://chainery.comoj.com。该网站在 FF 和 Safari 中运行良好,但 IE 无法加载第一页。 ajax 指示器出现了,就是这样。在第一页上,它从 xml 文件加载数据并显示它。我以为我已经远离了 IE 中粗略的东西,但我错过了一些东西。 “产品”页面确实正确加载了所有内容,但文本的左侧应该是图像。我希望这是同样的问题。我知道我这里缺乏信息,并且愿意发布所需的任何内容,但我只是不知道从哪里开始。
非常感谢, 托德
I have been working on a template using almost all jquery/javascript. Mostly I am learning jquery/javascript. My site is at http://chainery.comoj.com. The site works well in FF and Safari but alas, IE doesn't load the first page. The ajax indicator shows up and that is it. On the first page it loads data from an xml file and displays it. I thought I had stayed away from stuff that was sketchy in IE but I missed something. The 'product' pages do load all of the content correctly but on the left side of the text should be an image. I am hoping this is the same problem. I know I am short on info here and am willing to post whatever is needed, but I just don't know where to begin.
Thank you very much,
Todd
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 template_xml.js 中,您将在第 170 行处死亡。
这个 jquery bug 在此讨论。
他们的解决方案是:
他们已将该错误标记为“不会修复”。
希望这有帮助。
BWI,对于其他搜索者,您看到的错误是:
对于那些好奇我如何追踪它的人:
在 IE 中,按 F12 调出调试器。
单击“脚本”选项卡
单击“开始调试”(页面重新加载)
$("title").text($(this).find("pageName").text());
(这与我快速谷歌搜索时读到的内容一致)我上面提到的错误。)In template_xml.js, you're dying on line 170.
This jquery bug is discussed here.
Their solution is:
And they've marked the bug as "wontfix".
Hope this helps.
BWI, for anyone else searching, the error that you see is:
For those curious how I tracked it down:
In IE, hit F12 to bring up debugger.
Click on Script Tab
Click "Start Debugging" (page reloads)
$("title").text($(this).find("pageName").text());
(which agrees with what I read when I did a quick google for the error that I mentioned above.)