本文介紹HTML input checked 屬性是一個布爾屬性,它指定在頁面加載時應預先選擇(選中) <input>元素。
帶有默認選中復選框的HTML表單:
<!DOCTYPE html> <html> <head> <title>HTML:<input> checked 屬性 - 菜鳥教程(cainiaoplus.com)</title> <body> <form action="action_page.php" method="get"> <input type="checkbox" name="vehicle" value="Bike">山地車<br> <input type="checkbox" name="vehicle" value="Car" checked>小轎車<br> <input type="submit" value="Submit"> </form> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 checked 屬性。
checked 屬性是一個布爾屬性。
如果存在,它指定在頁面加載時應預先選擇(選中)<input>元素。
checked 屬性可以與 <input type="checkbox"> 和 <input type="radio">一起使用。
checked 屬性也可以在頁面加載完成后,通過 JavaScript 代碼進行設置。
沒有。
在 XHTML 中,禁止屬性簡寫,checked 屬性必須定義為 <input checked="checked" />。
<input checked>HTML <input> 標簽