$(document).ready( function
() { var
tag=$( ".tags" ); tag.mouseover( function (){ $( this ).addClass( "tagOn" ).siblings().removeClass( "tagOn" ); var
index = tag.index( this ); $( "#tagsBody" ).eq(index).show().siblings().hide(); }).hover( function (){ $( this ).addClass( "on" ); }, function (){ $( this ).removeClass( "on" ); }) }); |
原文地址:http://www.cnblogs.com/frozen/p/3721857.html