使用JavaScript 動態停用HTML 按鈕
雖然透過直接將「disabled」附加到其標籤來停用HTML 按鈕是一種常見的做法,但提出如何使用JavaScript 以程式設計方式實現這一點的問題。與流行的看法相反,「disabled」確實是一個屬性,儘管其 HTML 程式碼中缺少關聯值。
在 JavaScript 中,HTML 按鈕的「disabled」屬性可以設定為 true 或 false切換其啟用/停用狀態。這可以使用點表示法來實現,如下例所示:
<code class="javascript">foo.disabled = true;</code>
或者,setAttribute() 和removeAttribute() 方法也可以用於管理「disabled」屬性:
<code class="javascript">foo.setAttribute('disabled', 'disabled'); // Disable button foo.removeAttribute("disabled"); // Enable button</code>
但是,在使用舊版的Internet Explorer 時,不建議使用這些方法,因為眾所周知,它們會在setAttribute() 中出現錯誤。
以上是如何使用 JavaScript 以程式設計方式停用 HTML 按鈕?的詳細內容。更多資訊請關注PHP中文網其他相關文章!