js操作DropDownList大全
一:js 设置DropDownList选中某项
1.根据Value值设置选中某项 例子如下:
HTML代码:
JS代码:
document.getElementById("ddlFolder").value="0";//0为你要选中的项的value
2.根据Text值设置选中某项
var DropDownListCurrencyNew
= document.getElementById("ddlFolder");
for(i = 0; i < DropDownListCurrencyNew.options.length; i++)
{
if(DropDownListCurrencyNew.options[i].text == "选项0")
{
DropDownListCurrencyNew.options[i].selected = true;
}
}
二:js读取DropDownList选中项的value和text
Value:
var selValue =document.getElementById("DropDownList1").options[document.getElementById("DropDownList1").selectedIndex].value;
Text:
var selText = document.getElementById("DropDownList1").options[document.getElementById("DropDownList1").selectedIndex].text玉环人力网(又名玉环人才网)是玉环人才吧旗下一流的玉环人力资源招聘行业服务品牌,汇集海量玉环人才,开放玉环人才简历和玉环岗位,提供玉环招聘网,玉环人才市场动态行情,玉环劳务派遣,玉环培训等,是玉环最大的人才网站。