1

我正在使用 innerHTML 函数在 HTML 中动态创建一个下拉菜单并使用某些参数填充它。这是我的代码:

for (i in categories) {
    var cat_name = i;
    var cats = categories[cat_name];

    P2_txt.innerHTML += cat_name;       

    if (cats.length > 2) {
        // Drop Down Menu Needed
        P2_txt.innerHTML += '<select>';

        for (var j = 0; j < cats.length; j++) {
            P2_txt.innerHTML += '<option>'+cats[j]+'</option>';
        }

        P2_txt.innerHTML += '</select>';
    }   
}

但是,当我运行它时,会生成以下 HTML 代码:

<select></select>
<option>Value of cats[0]</option>
<option>Value of cats[1]</option>
<option>Value of cats[2]</option>

而不是我想要的,这是:

<select>
    <option>Value of cats[0]</option>
    <option>Value of cats[1]</option>
    <option>Value of cats[2]</option>
</select>

有什么想法吗?

4

2 回答 2

7

当您修改innerHTML它时,它会立即解析到 DOM 中......因此您有效地添加了一个select元素,然后是一堆option超出预期层次结构的元素。

所以,你要么:

  1. 构建整个组合框标记,然后将其添加到 innerHTML
  2. 或者使用 DOM 方法createElement等等 appendChild而不是丑陋的字符串连接。

var categories = {
    "Domestic": ["Tabby", "Siamese"],
    "Wild": ["Cougar", "Tiger", "Cheetah"]
  },
  cats,
  combo,
  frag = document.createDocumentFragment();

for (var category in categories) {

  cats = categories[category];

  frag.appendChild(document.createTextNode(category));

  combo = document.createElement("select");

  for (var i = 0, ln = cats.length; i < ln; i++) {
    combo.appendChild(document.createElement("option")).textContent = cats[i];
  }

  frag.appendChild(combo);
}

document.body.appendChild(frag);

​</p>

于 2012-11-27T20:15:46.020 回答
3

除非您附加完整的HTML ,否则切勿使用+=with 。innerHTML

因此,您应该创建一个字符串,var str = ""; ... str += "...";,然后附加它:P2_txt.innerHTML += str;

于 2012-11-27T20:15:51.150 回答