Files
freeCodeCamp/guide/chinese/html/attributes/input-checked-attribute/index.md
2018-10-16 21:32:40 +05:30

26 lines
720 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Input Checked Attribute
localeTitle: 输入检查属性
---
## 输入检查属性
checked属性是布尔属性。
如果存在,它指定一个页面加载时应预先选择(选中)元素。
checked属性可以与。一起使用和 。
还可以在页面加载后通过JavaScript设置checked属性。
## 看一下下面的例子:
```html
<form action="/action_page.php">
<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属性将自动选中第一个复选框。