如何在 HTML 中設定使指定元素/元素組變為停用狀態?


使用 disabled 屬性停用一個元素。此屬性可用於以下元素: <button>、 <input>、<select>、<textarea> 等。

示例

你可以嘗試執行以下程式碼來實現 disabled 特性 −

<!DOCTYPE html>
<html>
   <body>
      <p>Which sports do you like?</p>
      <form action = "" method = "get">
         <input type = "checkbox" name = "vehicle" value = "football" checked> Football<br>
         <input type = "checkbox" name = "vehicle" value = "cricket" checked> Cricket<br>
         <input type = "checkbox" name = "vehicle" value = "hockey"> Hockey<br>
         <input type = "submit" value = "Submit" disabled>
      </form>
   </body>
</html>

更新於:24-6-2020

77 次瀏覽

開啟你的 事業

透過完成課程獲得認證

開始
廣告
© . All rights reserved.