我有许多具有同一类的 divpro3
和一个具有类的图像showcatdiv
这被附加在 wordpress 页面上的任何图像上。我想pro3
在悬停时显示 divshowcatdiv
下面是我的pro3
div
<div class="pro3catProducts" style=" background-color: #FFFFFF; border: 0px solid black;
height: 279px; left: '200'px; opacity: 0.55; padding-left: 10px;
position: relative; top: '100'px; width: 39px; display:none;">
<IMG class="catsmallImages" id="catsmallImages1" SRC="Images/fashion.png" BORDER="1" ALT="" style="height: 37px; padding: 3px; width: 28px;">
<IMG class="catsmallImages" id="catsmallImages2" SRC="Images/fashion.png" BORDER="1" ALT="">
</div>
我为它写了一个javascript
<script type="text/javascript">
if ( undefined !== window.jQuery ) {
// script dependent on jQuery
alert("test");
jQuery(".showcatdiv").hover(function(){
//alert("test324");
jQuery(".pro3catProducts").show();
});
}
</script>
有了这个,它在每个图像上显示 pro3 div..我想在那个特定图像上显示??
第一个图像显示了我想要悬停效果的图像......第二个图像做了我需要的,但我只想要那个特定的图像,这里它显示在所有图像上..