0

我正在使用如下所示的嵌入式 js 脚本制作选择元素。我确实看到页面上有一个选择元素,但下拉列表是空白的。默认选择也不显示。我认为 CSS 不起作用的原因是尺寸太差了。我做了一个不是来自 js 的静态选择,它要大得多。有什么建议么?

* UDPATE*

我附加了选择元素,但现在我有两个。一种具有选择权且不受 CSS 影响,另一种为空白且由 CSS 表正确格式化。是什么赋予了?

<script>
             function processCSV(file,parentNode)
             {
                var frag = document.createDocumentFragment()
                , lines = file.split('\n'), option;                 
                var intial_option = document.createElement("option");

                intial_option.setAttribute("value","");
                intial_option.setAttribute("disabled","disabled");
                intial_option.setAttribute("selected","selected");
                intial_option.innerHTML = "Please select a Plant";
                frag.appendChild(intial_option)

                for (var i = 0, len = lines.length; i < len; i++){
                    option = document.createElement("option");
                    option.setAttribute("value", lines[i]);
                    option.innerHTML = lines[i];                        
                    frag.appendChild(option);
                    }

                parentNode.appendChild(frag);
                                            menuholder.appendChild(parentNode);
             }

             var plant_select = document.createElement("select");  
             var datafile = '';
             var xmlhttp = new XMLHttpRequest();

             plant_select.setAttribute("class", "selectbox");   
             plant_select.setAttribute("id", "plant_select");



             xmlhttp.open("GET","http://localhost:8080/res/plants.csv",true);
             xmlhttp.send();
             xmlhttp.onreadystatechange = function()
             {
                if(xmlhttp.status==200 && xmlhttp.readyState==4)
                {
                    processCSV(xmlhttp.responseText, plant_select);
                }
             }
        </script>

对应的 CSS 文件部分如下所示

body
 {
    padding: 0;
     margin: 0;
background-color:#d0e4fe;
font-size: 2em;
      font-family: monospace;
      font-weight: bold;
  }

.menu_container
{
   position: relative;
    margin: 0 auto;
 }
.menu_element
{ 
float: right;
width: 33%;
}
4

1 回答 1

2

我相信您需要将 plant_select 插入到 dom 中。

因此,在执行 processCSV 之前,请执行以下操作

var body_elem=document.getElementsByTagName('body')[0];
body_elem.appendChild(plant_select);

根据您想要菜单的确切位置改变第一行(要附加到哪个元素)。有关创建和插入文档元素的信息,请参阅https://developer.mozilla.org/en-US/docs/Web/API/Node.appendChild ,另请参阅insertBefore

实际上,我也看不到您将选项放入文档的哪个位置。

这也可能会有所帮助,因为您尤其是在 IE 中 - 而不是 plant_select.setAttribute("class", "selectbox"); plant_select.setAttribute("id", "plant_select");

尝试

     plant_select.className="selectbox";   
     plant_select.id="plant_select";

特别是 IE 在选择将属性映射到属性时遇到了问题。以这种方式设置 id 和 class 比 setAttribute 更可靠。

于 2013-10-08T15:59:35.113 回答