首页 > 代码库 > HTML <button>标签
HTML <button>标签
如果<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>标签
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。