我已经使用选择器为and元素this
中的图像设置动画li
a
jQuery
jQuery(document).ready(function () {
jQuery(".jcarousel-skin-tango li").mouseenter(function () {
jQuery(this).children("a").children("img").animate({
top: '10px'
}, 2000);
});
});
html
<ul id="mycarousel" class="jcarousel-skin-tango">
<li>
<a href="http://google.com/">
<img alt="" src="item1.gif" /><span>adfadf</span></a>
</li>
</ul>
图像对鼠标进入没有任何影响,为什么?