虽然没能用老是的方法实现出来,但是用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
老师其实没有用jquery,只是把根据id获取对象的方法封装成了一个名为 '$' 的方法
不过这样很容易让人理解错T^T
不过这样很容易让人理解错T^T
2016-02-03