我是靠谱客的博主 寂寞绿草,最近开发中收集的这篇文章主要介绍点击按钮时,显示不同的div内容,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<!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>无标题文档</title>
<style type="text/css">

</style>

</head>

<body>

<ul>
<li ><a href="#" type="radio" name="sex" id="button1" οnclick="show1()"> A</a></li>
<li><a href="#" type="radio" name="sex" id="button1" οnclick="show2()" >B</a></li>
</ul>
<div style="display:none" id="div1">
<p>第一个DIV!</p>
</div>
<div style="display:none" id="div2">
<p> 第二个DIV!</p>
</div>

<script>
function show1(){
document.getElementById("div1").style.display="block";
document.getElementById("div2").style.display="none";
};
function show2()
{
document.getElementById("div2").style.display="block";
document.getElementById("div1").style.display="none";
}
</script>
</body>
</html>

转载于:https://www.cnblogs.com/leaflife/p/6735097.html

最后

以上就是寂寞绿草为你收集整理的点击按钮时,显示不同的div内容的全部内容,希望文章能够帮你解决点击按钮时,显示不同的div内容所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部