单机如下图所示的“开发工具”没有该功能的请到文件菜单下的选项中进行设置
请点击输入图片描述
在“开发工具”菜单下找到如下图所示的按钮,单击打开
请点击输入图片描述
选中如下图所示的选项就为"单选框"
请点击输入图片描述
单选框插入成功后,我们需要对单选框的属性进行设置,如下图选中单选框右键选择属性
请点击输入图片描述
在d出的窗口中进行如下设置,输入单选框的名称
请点击输入图片描述
最后给出一个效果图供用户参考,如果您喜欢,您可以收藏并关注作者,本人会不定期的推出各种各样的小技巧,当然如果您有其他疑问也可私信作者直接提问,感谢您的支持!
请点击输入图片描述
方法有两种。
第一种通过<select>的属性来设置选中项,此方法可以在动态语言如php在后台根据需要控制输出结果。
<select id = "sel" >
<option value = "1" >1</ option >
<option value = "2" selected = "selected" >2</ option >
<option value = "3" >3</ option >
</ select >
第二种为通过前端js来控制选中的项:
<script type = "text/javascript" >
function change(){
document.getElementById("sel")[2].selected=true
}
</ script >
<select id = "sel" >
<option value = "1" >1</ option >
<option value = "2" >2</ option >
<option value = "3" >3</ option >
</ select >
<input type = "button" value = "修改" onclick = "change()" />
获取<select>标签选中项文本的js代码为:
var val = document.all.Item.options[document.all.Item.selectedIndex].text
var i=document.getElementById('sel').options[document.getElementById('sel').selectedIndex].value
扩展资料
Radio 对象代表 HTML 表单中的单选按钮。在 HTML 表单中 <input type="radio">每出现一次,一个 Radio 对象就会被创建。
单选按钮是表示一组互斥选项按钮中的一个。当一个按钮被选中,之前选中的按钮就变为非选中的。当单选按钮被选中或不选中时,该按钮就会触发 onclick 事件句柄。您可通过遍历表单的 elements[] 数组来访问 Radio 对象,或者通过使用 document.getElementById()。
参考资料:百度百科-radio
设置radio的checked属性为ture即为选中。<input type="radio" id="radioId" value="1" >
选中单选框JS代码:
var target = document.getElementById("radioId")
target.checked = true
附完整代码:
<!DOCTYPE html>
<!--STATUS OK-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta http-equiv="content-type" content="text/htmlcharset=gbk" />
<meta property="wb:webmaster" content="3aababe5ed22e23c" />
<meta name="referrer" content="always" />
<title>demo</title>
</head>
<body>
<input type="radio" value="radio1" id="radio1" name="radio"/><label for="radio1">RADIO 1</label>
<input type="radio" value="radio2" id="radio2" name="radio"/><label for="radio2">RADIO 2</label>
<input type="radio" value="radio3" id="radio3" name="radio"/><label for="radio3">RADIO 3</label>
<input type="radio" value="radio4" id="radio4" name="radio"/><label for="radio4">RADIO 4</label>
<br/><br/>
<button onclick="selectRadio('radio1')">选中radio1</button>
<button onclick="selectRadio('radio2')">选中radio2</button>
<button onclick="selectRadio('radio3')">选中radio3</button>
<button onclick="selectRadio('radio4')">选中radio4</button>
<br/>
<br/>
</body>
<script type="text/javascript">
function selectRadio(radioId) {
var target = document.getElementById(radioId)
target.checked = true
}
</script>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)