我似乎无法将项目附加到 Internet Explorer 8 中的 <select> 元素。这是代码,它在 Chrome 和 Internet Explorer 9 中完美运行,是否还有其他方法可以使其在 Internet Explorer 8 中运行?

$("#" + data[0].Name).append($('<option/>', {
    value: data[i].Values[k].Value,
    text: data[i].Values[k].Label
}));

最佳答案

这是工作解决方案。
http://jsfiddle.net/8yFsh/

它在 IE8 中对我有用。下面是添加选项的代码

$('#ptest').
      append($("<option></option>").
      attr("value","pavan").
      text("pavan"));

关于jquery - 在 Internet Explorer 8 中附加到 <select> 元素时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8487895/

10-14 11:32