我在 IE-8 和 IE-7 中遇到一些问题。 jquery animate 在 IE-7 和 IE-8 中不起作用。我给你我的演示服务器链接,我已经上传了所有代码。 演示服务器 URL
只需单击左侧的“我们的菜单”链接即可。单击后,您会看到一个页面,其中包含完整的背景图像和框中的小图像。当我单击下一个按钮时,两个图像都会发生变化。
这在 Firefox、Chrome、Safari 和 IE-9 中运行良好。
但在 IE-7 和 IE-8 中,背景图像第一次发生变化。之后它不会根据前面的框图像发生变化。
我无法理解到底是什么问题。
提前致谢。
I am facing some isssues in IE-8 and IE-7. The jquery animate is not working in IE-7 and IE-8. I giving you my demo server link where I have uploaded all the code. Demo Server URL
Just click on the Our Menu link on the left side. After clicking you see a page with full bg image and small image on from in the box. When I click on the next button both the images changes.
This is working fine in Firefox, Chrome, Safari and IE-9.
But in IE-7 and IE-8, the bg image changes for the very first time. After that it doesn't changed according to the box images in the front.
I am not able to understand what actually is the problem.
Thanks in advance.
发布评论
评论(2)
您在
line 227
上有一个未定义的函数调用test();
,这可能会阻止资源管理器执行 javascript。 Chrome 和 Firefox 有时可能会容忍 JavaScript 错误,但资源管理器很少容忍。编辑:
这似乎是原始插件的问题。我建议您询问插件所有者如何修复它,或者是否有更新的版本
,或者
您可以使用 http://www.jslint.com/。 jslint.com/ 检查插件代码,这样你至少可以避免 IE 可能不喜欢的语法错误
You have an undefined function call
test();
online 227
and this may block explorer to execute javascript. Chrome and Firefox may tolerate javascript errors sometimes but explorer rarely tolerates.Edit:
it seems this is a problem from original plugin. I suggest you to ask plugin owner how to fix it or if there is a newer version
or
you can use http://www.jslint.com/ to check the plugin code so you may avoid at least syntax errors that IE may not like
您的代码可能有一些错误。见这里。删除 并重试
May be some wrong in your code. see here. remove
<scrip
and try again