日期:2014-05-16 浏览次数:20382 次
html:
<div class="all-goods">
<div class="item">
<div class="product">
<h3> <a href="#">服务机构</a> </h3>
<s></s>
</div>
<div class="product-wrap posone" style="height:360px;">
<div class="cf">
<div class="fl wd460 pl20 blee">
<p style="color:#e86842;font-size:17px;">xxx</p>
<br/>
<p style="height:38px;"><select>
<option>请选择验证方式</option>
<option>请选择验证方式</option>
<option>请选择验证方式</option></select> </p>
</div>
</div>
</div>
js:
$(function(){
$('.all-goods .item').hover(function(){
$(this).addClass('active').find('s').hide();
$(this).find('.product-wrap').show();
},function(){
$(this).removeClass('active').find('s').show();
$(this).find('.product-wrap').hide();
});
});