js-select

作者: 萝卜缨女王 | 来源:发表于2020-09-29 08:36 被阅读0次

    onchange
    oSel.selectedIndex 被选中下标
    oSel.options 所有option的组
    oSel.options[下标].text 文字
    oSel.options[oSel.selectedIndex].text
    oSel.options[下标].value 仅仅是value属性 *
    oSel.options[oSel.selectedIndex].value
    高级浏览器 没有value,给你text
    低版本 没有value,给你空的

    添加
    var oNew=new Option();
    oNew.text
    oNew.value
    oSel.options.add(oNew);

    删除
    oSel.options.remove(下标)
    oSel.options.remove(2);

    注意:连续删除的时候,自动补齐

    相关文章

      网友评论

          本文标题:js-select

          本文链接:https://www.haomeiwen.com/subject/fhhcyktx.html