js 获取select的值 / js动态给select赋值
Posted 小猿笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 获取select的值 / js动态给select赋值相关的知识,希望对你有一定的参考价值。
var t = document.getElementById("select1");
var selectValue=t.options[t.selectedIndex].value;//获取select的值
var t1 = document.getElementById("select2");
for(i=0;i<t1.length;i++){//给select赋值
if(selectValue==t.options[i].value){
t1.options[i].selected=true
}
}
第二种方法,赋值是一样
<select id="select1" name="select1">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
</select>
<input type="button" id="button1" value="submit" οnclick="getSelectValue()"/>
<script>
function getSelectValue(){
var selectCount = document.getElementById("select1").options;
for(var i = 0 ; i<selectCount.length;i++){
if(selectCount[i].selected){
alert(selectCount[i].value);
}
}
}
</script>
文章转自:https://blog.csdn.net/yy_2011/article/details/7885469
以上是关于js 获取select的值 / js动态给select赋值的主要内容,如果未能解决你的问题,请参考以下文章