web元素选择
单选框:radio
<html>
<head></head>
<body>
<div id="speedDiv" >
<label>奔跑速度:</label>
<input type="radio" name ="runSpeed" value="fast" checked>快速( 默认值)
<input type="radio" name ="runSpeed" value="Medium" >中速
<input type="radio" name ="runSpeed" value="slow">慢速
</div>
</body>
</html>
选中