我有这个问题3天。是的,我知道它这么久,我对此感到非常紧张。
问题是当我做 {.hover} 我想要 2 个按钮出现。
代码是
// HOVER
$(document).ready(function(){
$("a#static").hover(function() {
$(this).stop().animate({"opacity": "0"}, "350");
$(this).find('img#previewbut');
}, function() {
$(this).stop().animate({"opacity": "1"}, "350");
$(this).find('img#previewbut');
});
});
表格
<li>
<p>' . $yValue['title'] . '</p>
<span class="time timeright">' . $yValue['time'] . '</span>
<a class="videoThumb4" href="http://www.youtube.com/watch?v=' . $yValue['videoid'] . '" id="static">
' . $yValue['description'] . '
</a>
<img src="img/preview.png" id="previewbut" />
</li>
我需要为 jquery 修复什么?