zoukankan      html  css  js  c++  java
  • HTML <button>标签

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

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

    <style>
      #a,#b
      {
      height:30px;
      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>
    

      

  • 相关阅读:
    UVA 10564 Paths through the Hourglass DP
    HDU 3397 Sequence operation 线段树 成段更新 区间合并
    HDU 3308 LCIS 线段树 单点更新+区间合并
    POJ 3667 Hotel 线段树 区间合并
    UVALive 3942 Remember the Word Tire+DP
    POJ 1703 Find them, Catch them
    UVA 1366 Martian Mining DP
    UVA 1456 Cellular Network 贪心+DP
    UVA 11573 Ocean Currents
    【ACM】hdu_zs1_1003_放大的X _201307271557
  • 原文地址:https://www.cnblogs.com/GUOZHENY/p/6085955.html
Copyright © 2011-2022 走看看