$(function() {
$('.showpic img').hover(function() {
$(this).stop().animate({ "opacity": 0.8 }, 80);
}, function() {
$(this).stop().animate({ "opacity": 1 }, 80);
});
});我用的是织梦CMS   首页调用是OK 的其他页面怎么弄都不行   奇怪了 怎么回事?<div class="showpic">
 <a><img src="../images/123.jpg" /></a>
</div>检查了路径都OK 的