html表单如何实现默认选择某项
代码:
效果:
实现原理:
在单项按钮<input type="radio">与复选按钮<input type="checkbox">中,通过checked="checked"代码可以实现默认选择某项。如果需要将默认选项更改为“冲浪”只需要将代码checked="checked"移到"冲浪"选项中即可。
代码含义:
<input type="radio"> 定义单选按钮。
<input type="radio" checked="checked">定义此选项为默认选项
<input type="checkbox">定义多选按钮。
<input type="checkbox" checked="checked">定义此选项为默认选项
代码原件:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题</title>
</head>
<body>
<form>
<input name="radiobutton" type="radio" value="radiobutton" >男
<input name="radiobutton" type="radio" value="radiobutton" checked="checked">女
</form>
<form>
爱好:
<input name="checkbox" type="checkbox" value="checkbox" >游泳
<input name="checkbox" type="checkbox" value="checkbox" checked="checked">高尔夫
<input name="checkbox" type="checkbox" value="checkbox" >冲浪
</form>
</body>
</html>