最新的Web開發教程
 

HTML checked Attribute


定義和用法

checked屬性是一個布爾屬性。

如果存在,它指定一個<input>元素應預先選定(選中)時,頁面加載。

checked屬性可以使用<input type="checkbox"><input type="radio">

checked屬性還可以在頁面加載後設置,使用的JavaScript。


適用於

checked屬性可在下面的元素上使用:

元件 屬性
<input> checked

例子

Input示例

一個HTML形式的預選複選框:

<form action="demo_form.asp">
  <input type="checkbox" name="vehicle" value="Bike"> I have a bike<br>
  <input type="checkbox" name="vehicle" value="Car" checked> I have a car<br>
  <input type="submit" value="Submit">
</form>
試一試»

瀏覽器支持

在表中的數字指定完全支持屬性所述第一瀏覽器的版本。

屬性
checked 1.0 2.0 1.0 1.0 1.0