资料下载
Source: https://basicmed.fudan.edu.cn/a1/be/c28521a500158/page.htm Parent: https://basicmed.fudan.edu.cn/
资料下载
科学研究
- 科研论文
-
.reg-left a { display: inline-block; width: 240px; height: 55px; line-height: 55px; color: #fff; font-size: 20px; text-decoration: none; background: #bdab6b; text-align: center; margin: 20px 25px; } .reg-left a:hover { color: #fff; background:#a22226; transition: all 1.5s; }
地址:上海市医学院路138号
电话:021-54237308
传真:021-64179832
沪ICP 备05052068号 沪举报中心 公安备案号31009102000043
$(function () { //在内容中除了第一行显示外,其他的都隐藏 $(".shi-top ul li").eq(0).addClass("active"); $(".shi-con2 .shi-con1:gt(0)").hide(); //点击li元素 $(".shi-top li").click(function () { //当前的添加样式,其余的兄弟元素移除样式 $(this).addClass("active").siblings().removeClass("active"); //获取内容中的索引,并进行显示 var index = $(this).index(); $(".shi-con2 .shi-con1").eq(index).show().siblings().hide(); }); })