欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

基于jquery的tab切换 js原理_jquery

程序员文章站 2022-05-03 12:27:25
...
html代码:
复制代码 代码如下:


  • 个人资料
  • 帐号维护
  • 在来个

11111111111111111111111111111111





js代码:
复制代码 代码如下:

$(function(){
$(".tab>li").mouseover(function(){
$(".tab>li").removeClass("on");
$(this).addClass("on");
var target = $('#' + this.rel);
if (target.size() > 0) {
$('.details > dl').hide();
target.show();
} else {
alert('There is no such container.');
}
});
});

效果图:

基于jquery的tab切换 js原理_jquery
打包下载地址

相关标签: jquery tab切换