HTML5 input checked

input checked

选择控件专属属性,默认选中。

<form>

<!-- radio -->
one <input type="radio" checked name="num" value="1"> <!-- 默认选中 -->
two <input type="radio" name="num" value="2">

<!-- checkbox -->
one <input type="checkbox" checked name="num" value="1"> <!-- 默认选中 -->
two <input type="checkbox" name="num" value="2">

</form>

控件效果

默认选中:one two one two
更多教程 HTML5 教程 CSS3 教程 JavaScript 教程 JQuery 教程 React.js 教程 Node.js 教程 Koa2 教程 Python 教程 Linux 教程