请帮忙!我有一个拇指图像链接在悬停时换出。它在 Firefox 和 Safari 中运行良好,但在 IE 和 Chrome 上不显示。我是 Javascript 新手,所以如果我遗漏了明显的内容,请原谅。先感谢您。
这是脚本:
$(document).ready (function(){
var fadingImage;
$(".fade").hover(function(){
fadingImage = $(this).find("img").eq(1);
fadingImage.stop(true, true).fadeIn(250);
}, function(){
fadingImage.stop(true, true).fadeOut(250);
});
});
HTML 代码:
<section class="brands_list">
<div style="display:block; width:290; height:160;"" class="fade">
<a href="<?php echo get_bloginfo('siteurl')."/".$urlSlug."/".$brandSlug; ?>"><img src="<?php echo $brandLogo ?>" class="brand" alt="<?php echo $brandName ?>" width="290" height="160"/>
<img src="<?php echo $brandImage ?>" class="brand" alt="<?php echo $brandName ?>" width="290" height="160"/>
</a>
</div>
</section>