html button对象

按钮禁用:

<form>
按钮:
<button id="firstbtn">OK</button>
<button id="secondbtn">OK</button>
</form>
<p>点击下面的按钮禁用上面的第一个按钮。</p>
<button onclick="disableElement()">禁用按钮</button>

JS:

<script>
function disableElement(){
	document.getElementById("firstbtn").disabled=true;
}
</script>

猜你喜欢

转载自blog.csdn.net/qq_40771567/article/details/82782768
今日推荐