标签:
2、简单的写上以下18行代码就可以实现了
$(document).ready(function() { $("div.tip_trigger a.img").hover(function() { $(this).parent(‘div.tip_trigger‘).css({ ‘background‘: ‘#8de08b‘, ‘z-index‘: ‘1000‘ }); $(‘#h_coolsite .block‘).show(); tip = $(this).siblings(‘.tip‘); tip.show(); }, function() { $(this).parent(‘div.tip_trigger‘).css({ ‘background‘: ‘none‘, ‘z-index‘: ‘0‘ }); $(‘#h_coolsite .block‘).hide(); tip.hide(); }) 19 })
标签:
原文地址:http://www.cnblogs.com/SJP666/p/4728599.html