求助:同一个页面中不同按钮显示不同DIV层效果

 我来答
网站建设公司独占网络
2017-01-13 · TA获得超过216个赞
知道小有建树答主
回答量:279
采纳率:84%
帮助的人:198万
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>显示不同的div</title>
<style>
ul{ clear:both}
li{float:left; width:120px; padding:0; margin:0;}
</style>
<script type="text/javascript" src="http://www.sz886.com/js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(e) {

$(".btn_1").click(function(){

//定位到当前第几行的信息
var index=$(".btn_1").index($(this));
//显示不同的div
$(".div_info div").eq(index).show().siblings().hide();

});

$(".btn_2").click(function(){

//定位到当前第几行的信息
var index=$(".btn_2").index($(this));
//显示不同的div
$(".content_1").eq(index).show().siblings(".content_1").hide();

});

});
</script>
</head>

<body>

方法1
<div class="div_info">
<div>内容1</div>
<div style="display:none">内容2</div>
</div>
<input class="btn_1" type="button" value="按钮1" /> <input class="btn_1" type="button" value="按钮2" />
<br />
<br />
方法2
<div class="content_1">内容1</div>
<div class="content_1" style="display:none">内容2</div>
<input class="btn_2" type="button" value="按钮1" /> <input class="btn_2" type="button" value="按钮2" />
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式