标签:
function G(){
var item=$(‘.req_list_item>li‘);
item.find($(‘.req_show‘)).hover(function(){
$(this).siblings($(‘.req_hide‘)).show()
},function(){
$(this).siblings($(‘.req_hide‘)).hide()
})
}
G()
标签:
原文地址:http://www.cnblogs.com/mhxy13867806343/p/5885764.html