$(function () { //今日、本周热点 $("#jr-hot1 li").click(function () { $(this).addClass('over').siblings().removeClass('over'); var index = $(this).index(); number = index; $('#rt-content1').children().each(function () { $(this).hide(); }); $('#rt-content1>div:eq(' + index + ')').show(); }); //最新推荐、买入、上调 $("#jr-hot2 li").click(function () { $(this).addClass('over').siblings().removeClass('over'); var index = $(this).index(); number = index; $('#rt-content2').children().each(function () { $(this).hide(); }); $('#rt-content2>div:eq(' + index + ')').show(); }); })