select联动遇到的问题
Posted GR07
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了select联动遇到的问题相关的知识,希望对你有一定的参考价值。
今天写了个select下拉联动,记录下过程中遇到的问题。
dom部分
// 拿到选中项的索引
myselect.selectedIndex
// 拿到选中项的text/value
myselect.options[index].text;
删除元素下的所有子元素
常用三种
//方法一: while(selectObj.firstChild) { selectObj.removeChild(selectObj.firstChild); } //方法二: selectObj.innerhtml = ""; //方法三: for(var i=optionNodes.length-1;i>=0;i--) { selectObj.removeChild(selectObj.lastChild); }
最后上个select联动的demo代码
以上是关于select联动遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章