optionvalue值怎么取,option标签的value属性
option的value值怎么使用
每一个选择框select都有一个options的列表对象。 文本值1 文本值2 文本值3 使用:options[2].value,这样可以得到值“three”;使用options[2].text,得到“文本值3”
怎样通过value值获取select中option的值
给你个示例,如下:获取下拉列表选中项的值和文本(select)//获取下拉列表选中项的文本functiongetSelectedText(name){varobj=document.getElementByIdx(name);for(i=0;i
Struts2用action类从jsp中获取select中option的value值
jsp页面部分代码:
s:form name="form1" method="post" action="glydenglu" namespace="/ssgl"
select name="role"
option value="1"普通管理员/option
option value="2"系统管理员/option
/select
/s:form
action类:
public class GlydengluAction extends ActionSupport {
private String role;
@Override
public String execute() throws Exception {
// TODO Auto-generated method stub
return super.execute();
}
public String denglu(){
HttpServletRequest request = ServletActionContext.getRequest();
String roles = request.getParameter("role");
if(rand_input.equals(rand)){
System.out.println(roles);
return SUCCESS;
}else{
return INPUT;
}
}
}
System.out.println(roles);打印出来的就是option的value值。
js如何获取到select的option值?
1、首先输入下方中的代码:
var obj = document.getElementByIdx_x(”testSelect”); //定位id
var index = obj.selectedIndex; // 选中索引
2、然后继续输入下方中的代码:
var text = obj.options[index].text; // 选中文本
var value = obj.options[index].value; // 选中值
3、最后运行了就可以获取到select的option值了,效果图:
如何获取select里面的option的值
jQuery获取Select元素,并设置的 Text和Value:
$("#select_id ").get(0).selectedIndex=1; //设置Select索引值为1的项选中
$("#select_id ").val(4); // 设置Select的Value值为4的项选中
$("#select_id option[text='jQuery']").attr("selected", true); //设置Select的Text值为jQuery的项选中
jQuery添加/删除Select元素的Option项:
$("#select_id").append("option value='Value'Text/option"); //为Select追加一个Option(下拉项)
$("#select_id").prepend("option value='0'请选择/option"); //为Select插入一个Option(第一个位置)
$("#select_id option:last").remove(); //删除Select中索引值最大Option(最后一个)
$("#select_id option[index='0']").remove(); //删除Select中索引值为0的Option(第一个)
$("#select_id option[value='3']").remove(); //删除Select中Value='3'的Option
$("#select_id option[text='4']").remove(); //删除Select中Text='4'的Option
三级分类 select name="thirdLevel" id="thirdLevel"
onchange="getFourthLevel()"
option value="0" id="thirdOption"
请选择三级分类
/option
/select
/div
四级分类:
select name="fourthLevelId" id="fourthLevelId"
option value="0" id="fourthOption"
请选择四级分类
/option
/select
/div
if($("#thirdLevel").val()!=0){
$("#thirdLevel option[value!=0]").remove();
}
if($("#fourthLevelId").val()!=0){
$("#fourthLevelId option[value!=0]").remove();
}//这个表示:假如希望当选择选择第三类时:如果第四类中有数据则删除,如果没有数据第四类的商品中的为默认值。
获取Select :
获取select 选中的 text :
$("#ddlRegType").find("option:selected").text();
获取select选中的 value:
$("#ddlRegType ").val();
获取select选中的索引:
$("#ddlRegType ").get(0).selectedIndex;
设置select:
设置select 选中的索引:
$("#ddlRegType ").get(0).selectedIndex=index;//index为索引值
如何将option里面的value值,通过ajax提交到后台
select放在form里面form提交的时候会把select当做普通的文本框input处理,在后台直接
request.getParameter是可以获取的,你获取不到,要看下你怎么提交至后台的select在没在form域中