码迷,mamicode.com
首页 > Web开发 > 详细

HTML <button>标签

时间:2016-11-22 17:58:08      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:body   修改   asc   java   sub   remove   for   round   box   

如果<button>标签在<form>中不加type=“button”,那么默认含义是“submit”。

<button>标签里面disabled属性使其不可用,常见javascript修改disabled属性实例:(a键b键互相撕逼)

<style>
  #a,#b
  {
  height:30px;
  width:70px;
  background:yellow;
  box-sizing:border-box;
  }

  
  
  
  </style>
 </head>
 <body>
 <button type="button" id="a" onclick="an()" >会变色</button>
 <button type="button" id="b" onclick="bn()" >会变色</button>
	<script>

	function bn()
	{

		if(document.getElementById("b").disabled!="true")

		{
			document.getElementById("b").disabled="true";
			document.getElementById("b").style.background="gray";
			document.getElementById("a").removeAttribute("disabled");
			document.getElementById("a").removeAttribute("style");
		}
		else
		{
			document.getElementById("a").disabled="true";
			document.getElementById("a").style.background="gray";
			document.getElementById("b").removeAttribute("disabled");
			document.getElementById("b").removeAttribute("style");
		}

	}
	function an()

	{

		if(document.getElementById("a").disabled!="true")
		{
			document.getElementById("a").disabled="true";
			document.getElementById("a").style.background="gray";
			document.getElementById("b").removeAttribute("disabled");
			document.getElementById("b").removeAttribute("style");
		}
		else
		{
			document.getElementById("b").disabled="true";
			document.getElementById("b").style.background="gray";
			document.getElementById("a").removeAttribute("disabled");
			document.getElementById("a").removeAttribute("style");
		}
	}
	</script>
</body>

  

 

HTML <button>标签

标签:body   修改   asc   java   sub   remove   for   round   box   

原文地址:http://www.cnblogs.com/GUOZHENY/p/6085955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!