zl程序教程

您现在的位置是:首页 >  其他

当前栏目

jqueryslibings选取同级其他元素的实现代码

代码 实现 元素 其他 选取 同级
2023-06-13 09:15:12 时间
复制代码代码如下:

<scripttype="text/javascript">
$(function(){
   $("#downloadchartsright.chartstitleopt,#downloadchartsleft.chartstitleopt").click(function(){
       $(this).siblings().removeClass("underline").end().addClass("underline");
   });
})
</script>




比如点击“今日排名”“本周排名”“本月排名”显示底部下划线,可以通过以上jquery代码显示隐藏样式。