繁体   English   中英

选择字段中的替换选项(不添加)

[英]Replacing option in select field (not adding)

我有一个选择字段,如下所示:

<select id="field">

我根据页面上另一个div(OtherDiv)中的值添加选项,如下所示:

window.onload = function onload()
    {
        var OtherDiv = document.getElementById('OtherDiv').innerHTML;
        var result = OtherDiv.match(/SomeRegex/gi);
        var select = document.getElementById("field");
        for(var i = 0; i < result.length; i++)
            {
                var option = document.createElement("option");
                option.value = i+1;
                option.innerHTML = result[i];
                select.add(option);
            }
    }

但是,如果没有与正则表达式匹配的内容,我想为该字段设置一些替代值。 我怎样才能最好地做到这一点?

如果条件使用

window.onload = function onload()
{
    var OtherDiv = document.getElementById('OtherDiv').innerHTML;
    var result = OtherDiv.match(/SomeRegex/gi);
    var select = document.getElementById("field");
    if(result.length){
        for(var i = 0; i < result.length; i++)
            {
                var option = document.createElement("option");
                option.value = i+1;
                option.innerHTML = result[i];
               select.add(option);
            }
      }else{
           //add alternative options here
           var option = document.createElement("option");
                option.innerHTML = "No records found"; //whatever text you want to show 
               select.add(option);
      }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM