nivoslider ie8 jquery bug,找不到它

发布于 2024-11-07 05:40:57 字数 296 浏览 6 评论 0原文

我在 IE8 中使用 nivoslider 脚本遇到了一些问题,我不知道它出了什么问题。

http://www.horecavacaturebank.nl/

它适用于除 IE8 之外的所有其他浏览器。一些帮助将不胜感激。

除此之外,它在 jquery js 脚本的第 155 行指出了一个 JS 错误。我认为这与 nivoslider 有关,因为所有其他页面都没有显示此错误。

提前致谢

I have got a little problem in IE8 with the nivoslider script and i cant figure out what is wrong with it.

http://www.horecavacaturebank.nl/

It works in all other browsers but IE8. Some help would really be appreciated.

Besides that it states a JS error on line 155 in the jquery js script. I think that has to do with the nivoslider since all other pages do not show this error.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风铃鹿 2024-11-14 05:40:57

该错误来自 /wp-content/themes/jobroller/includes/js/theme-scripts.js?ver=3.0 中的这些行:

/* add jquery lazy load for images */
jQuery('img').lazyload({
    effect:'fadeIn',
    placeholder: '../../images/grey.gif'
});

来自 Firefox 的更好的错误消息:

jQuery("img").lazyload 不是
功能

jquery.lazyload.mini.js?ver=1.5.0,但无论如何它都不起作用。


更新:

您的“Nivo Slider HTML”:

<div id="slider" class="nivoSlider">
    ..
    <a href="pakketten"><img src=".." alt="" />
</div>

您忘记关闭最后一个!这将起作用:

<a href="pakketten"><img src=".." alt="" /></a>

The error is coming from these lines in /wp-content/themes/jobroller/includes/js/theme-scripts.js?ver=3.0:

/* add jquery lazy load for images */
jQuery('img').lazyload({
    effect:'fadeIn',
    placeholder: '../../images/grey.gif'
});

Nicer error message from Firefox:

jQuery("img").lazyload is not a
function

You are loading jquery.lazyload.mini.js?ver=1.5.0 before that first script, but it's not working regardless.


Update:

Your "Nivo Slider HTML":

<div id="slider" class="nivoSlider">
    ..
    <a href="pakketten"><img src=".." alt="" />
</div>

You've forgotten to close the last <a>! This will work:

<a href="pakketten"><img src=".." alt="" /></a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文