gpt4 book ai didi

jquery - IE 和 Jquery qTip 插件的问题

转载 作者:行者123 更新时间:2023-12-01 07:35:21 25 4
gpt4 key购买 nike

我在使用 Jquery qtip 插件时遇到问题。

它在 Firefox 中运行良好(请参阅此处 http://movieo.no-ip.org/ 将鼠标悬停在第一张图片上)。

但在 IE 中不起作用。这是代码:

$('.moviebox').each(function() {
$(this).qtip({
content: $(this).children('.info'),
show: 'mouseover',
hide: 'mouseout',

style: { name: 'light' },
position: {
corner: {
target: 'rightbottom',
tooltip: 'bottomleft'
}
}
});
});

和 html

<!--start moviebox-->
<div class="moviebox">
<a href="#">
<img src="http://1.bp.blogspot.com/_mySxtRcQIag/S6deHcoChaI/AAAAAAAAObc/Z1Xg3aB_wkU/s200/rising_sun.jpg" />
</a>
<!--start infobox-->
<div class="info">
<span>Rising Sun (2006)</span>
<div class="description"><strong>Description:</strong><br /> test test test test test test test test test test test test test test test test</div>
<img src="http://1.bp.blogspot.com/_mySxtRcQIag/S6deHcoChaI/AAAAAAAAObc/Z1Xg3aB_wkU/s200/rising_sun.jpg" />
<div class="cast"><strong>Cast:</strong><br /> Sean connery</div>
<div class="rating"><strong>Rating:</strong><br />5stars</div>
</div>
<!--end infobox-->
</div>
<!--end moviebox-->

为什么这在 IE 中不起作用???打败我。查看 movieo.no-ip.org 获取完整来源

最佳答案

尝试使用以下内容:

$('.moviebox').each(function() {
$(this).qtip({
content: $(this).find('.info'),
show: 'mouseover',
hide: 'mouseout',

style: { name: 'light' },
position: {
corner: {
target: 'rightbottom',
tooltip: 'bottomleft'
}
}
});
});

在 IE 中,.info 不是 .movi​​ebox 的直接后代。

关于jquery - IE 和 Jquery qTip 插件的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2500686/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com