方法有两种。
第一种通过<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
<form onsubmit="checkfrm()"><input type="radio" name="rd" value='男' >男
<input type="radio" name="rd" value='女'>女
<input type="submit">
</from>
<script>
function checkfrm(){
var elm=document.getElementsByName('rd')
checked=false
for(ii=0ii<elm.lengthii++)
{
if(elm[ii].checked){checked=true}
}
if (!checked){alert('请选择性别')}
}
</script>
html:radio标签生成一个radio。主要的用法有两种,下面我们通过代码来示例。下面的代码示例了html:radio标签的一般用法,如果被提交则选中的radio的value值将被提交到radioForm中的id中。
<html:radio name="radioForm" property="id" value="00001">
One
</html:radio>
<html:radio name="radioForm" property="id" value="00002">
Two
</html:radio>
下面的代码示例了html:radio标签的典型用法,其中的persons和bean:define标签中的一致,您可以参考bean:define标签。我只介绍这个<html:radio idName="person" property="id" value="id">,idName指定html:radio要使用的bean(这里为person),value="id"表示person的id属性将作为radio元素的value值而property="id"表示提交时选中的radio的值将被提交给radioForm中的id属性。
<logic:notEmpty name="radioForm" property="persons">
<logic:iterate id="person" name="radioForm" property="persons">
<html:radio idName="person" property="id" value="id">
<bean:write name="person" property="name"/>
</html:radio>
</logic:iterate>
</logic:notEmpty>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)