简单选项卡 js和jquery制作方法分享
简单选项卡 js和jquery制作代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery-1.8.2.js"></script>
<script type="text/javascript">
$(function(){
$("#ul2 li").click(function(){
var num = $(this).index();
$("#con2 p").css("display","none");
$("#con2 p").eq(num).css("display","block")
})
})
</script>
<script type="text/javascript">
window.onload = function(){
var ss = document.getelementbyid("ul1").getelementsbytagname("li");
var pa = document.getelementbyid("con");
var p = pa.getelementsbytagname("p");
//alert(p.length)
var ch;
for(var i = 0;i < ss.length;i++){
ss[i].index = i;
ss[i].onclick = function(){
ch = this.index;
for(var j = 0; j<p.length; j++){
p[j].style.display = "none";
if(j == ch){
p[j].style.display = "block";
}
}
}
}
}
</script>
<style type="text/css">
li{
float:left;
height:30px;
width:100px;
border:1px #036 solid;
list-style:none;
text-align:center}
#con,#con2{
clear:both;
border:1px #0cf solid;
height:200px;
width:200px;
overflow:hidden}
#con p,#con2 p{
height:200px;
width:200px;
display:none}
</style>
</head>
<body>
<!--js方法实现-->
<ul id="ul1">
<li>标题一</li>
<li>标题二</li>
<li>标题三</li>
</ul>
<p id="con">
<p style="display:block">内容一</p>
<p>内容二</p>
<p>内容三</p>
</p>
<!--jquery方法实现-->
<ul id="ul2">
<li>标题一</li>
<li>标题二</li>
<li>标题三</li>
</ul>
<p id="con2">
<p style="display:block">内容一</p>
<p>内容二</p>
<p>内容三</p>
</p>
</body>
</html>
推荐阅读
-
一个简单的动态加载js和css的jquery代码
-
简单选项卡 js和jquery制作方法分享
-
分享一个基于jQuery,backbone.js和underscore.js的消息提示框架 - Backbone.Notifier
-
jquery之超简单的div显示和隐藏特效demo(分享)
-
原生js 和 jQuery 分别实现隔行变色(简单的方法)
-
原生JS与jQuery编写简单选项卡
-
使用js dom和jquery分别实现简单增删改
-
一个简单的动态加载js和css的jquery代码
-
简单选项卡 js和jquery制作方法分享
-
jquery之超简单的div显示和隐藏特效demo(分享)_jquery