Knockout虚拟元素无法使用Internet Explorer

时间:2013-05-13 14:02:50

标签: javascript knockout.js

如果您在Chrome中运行此小提琴,则选项框将正确填充选项A,B和C.但是,如果您使用Internet Explorer(版本8或9)运行它,则无效。我如何修复这个小提琴,使其适用于Internet Explorer,但仍使用虚拟元素?

http://jsfiddle.net/jeljeljel/2tUmP/

HTML

<script type="text/html" id="template">
    <select id="type" name="type">
        <option value="">-- Choose --</option>
        <!-- ko foreach: types -->
        <option data-bind="text: $data.desc, attr: { value: $data.id }"></option>
        <!-- /ko -->
    </select>
</script>
<div id="placeholder" data-bind="template: { name: 'template' }"></div>

的Javascript

function Model(){
    var self = this;
    self.types = ko.observable([]);
}
var model = new Model();
model.types().push({id: 0, desc:'A'});
model.types().push({id: 1, desc:'B'});
model.types().push({id: 2, desc:'C'});

ko.applyBindings(model);

1 个答案:

答案 0 :(得分:5)

这可能是Internet Explorer的限制。

使用options绑定填充<select>元素,而不是虚拟元素:

<select id="type" name="type"
    data-bind="options: types, optionsText: 'desc', optionsValue: 'id', optionsCaption: '-- Choose --'">
</select>

文档:http://knockoutjs.com/documentation/options-binding.html