Input Button disabled 屬性
Input Button 對象實(shí)例
實(shí)例 1
禁用一個按鈕:
<script>
document.getElementById("firstbtn").disabled=true;
</script>
document.getElementById("firstbtn").disabled=true;
</script>
輸出結(jié)果:
嘗試一下 ?
定義和用法
disabled 屬性可設(shè)置或者返回按鈕是否可用。
disabled 元素是不可用的即不可點(diǎn)擊。禁用元素在瀏覽器中通常呈現(xiàn)在灰色。
語法
設(shè)置 disabled 屬性:
element.disabled=true|false
返回 disabled 屬性:
element.disabled
瀏覽器支持
所有主要瀏覽器都支持 disabled 屬性
Input Button 對象
更多建議: