虽然没能用老是的方法实现出来,但是用jquery方法还是实现了这样的效果:
$(document).ready(function(){
$(".notice-tit li").mouseover(function(){
$(".notice-tit li").eq($(this).index()).addClass("select").siblings().removeClass('select');
$(".notice-con div").hide().eq($(this).index()).show();
});
});
$(document).ready(function(){
$(".notice-tit li").mouseover(function(){
$(".notice-tit li").eq($(this).index()).addClass("select").siblings().removeClass('select');
$(".notice-con div").hide().eq($(this).index()).show();
});
});
2016-03-12
已采纳回答 / EpisodeOne
楼主写的for(var j =0;j<titles.length;i++){ titles[j].className="" }中的自己量是“i', 此时应该是'j'
2016-03-01