1. 首页
  2. 数据库
  3. 其它
  4. jquery中实现标签切换效果的代码

jquery中实现标签切换效果的代码

上传者: 2020-12-21 09:40:52上传 PDF文件 126.01KB 热度 10次
核心代码: 代码如下: $(“ul > li”).hover(tab); function tab() { $(this).addClass(“ll”).siblings().removeClass(“ll”); var tab = $(this).attr(“title”); $(“#” + tab).show().siblings().hide(); }; li中和title必须和div中的id一致! 完整的代码 代码如下: [removed][removed] <script type=”t
用户评论