jquey与js操作select示例
jQuery("#tbTTenderMaterialDTOList option").attr("selected", true);选择所有的下拉选项
获取Select :
获取select 选中的 text :
1.$("#ddlRegType").find("option:selected").text();
2.nowrow.cells[3].innerText=ops[myselecter.selectedIndex].text;
获取select选中的 value:
$("#ddlRegType ").val();
获取select选中的索引:
$("#ddlRegType ").get(0).selectedIndex;
设置select:
设置select 选中的索引:
$("#ddlRegType ").get(0).selectedIndex=index;//index为索引值
设置select 选中的value:
$("#ddlRegType ").attr("value","Normal“);
$("#ddlRegType ").val("Normal");
$("#ddlRegType ").get(0).value = value;
设置select 选中的text:
var count=$("#ddlRegType option").length;
for(var i=0;i<count;i++)
{ if($("#ddlRegType ").get(0).options[i].text == text)
{
$("#ddlRegType ").get(0).options[i].selected = true;
break;
}
}
$("#select_id option[text='jQuery']").attr("selected", true);
设置select option项:
$("#select_id").append("<option value='Value'>Text</option>"); //添加一项option
$("#select_id").prepend("<option value='0'>请选择</option>"); //在前面插入一项option
$("#select_id option:last").remove(); //删除索引值最大的Option
$("#select_id option[index='0']").remove();//删除索引值为0的Option
$("#select_id option[value='3']").remove(); //删除值为3的Option
$("#select_id option[text='4']").remove(); //删除TEXT值为4的Option
清空 Select:
$("#ddlRegType ").empty();
jquery获得值:
.val()
.text()
设置值
.val('在这里设置值')
function moveTo(fromid,toid){
var selectedoptions=jQuery("#"+fromid).find("option:selected");
var newOptions=jQuery("#"+toid).attr('options');
for(var i=0;i< selectedoptions.length;i++){
var opt=new Option(selectedoptions[i].text,selectedoptions[i].value)
newOptions.add(opt);
}
selectedoptions.remove();
}
上面是jQuery及js操作将多选框的值从左边添加到右边,或从右边删除回左边的代码。
下面是有两个多先框的html代码。
<table cellpadding="5" cellspacing="0" border="0" class="ktable" style="width:98%">
<tr>
<td width="78" align="right"><em>*</em>负责承包商:</td>
<td colspan="3"><input name="textfield" type="text" class="width200" id="textfield" value="关键字" onfocus="this.value=''"/> <a href="#" class="sexybutton"><span><span>查询</span></span></a></td>
</tr>
<tr>
<td></td>
&nb