代码:-
<html>
<head>
<script type="text/javascript" src="http://knockoutjs.com/downloads/knockout-2.3.0.js"></script>
</head>
<body>
<table>
<thead>
<tr>
<th>Name</th>
<th>InputType</th>
</tr>
</thead>
<tbody data-bind="foreach: settings">
<tr>
<td data-bind="text: name"></td>
<td><input data-bind="attr: {type: dtype}"/></td>
</tr>
</tbody>
</table>
<script type="text/javascript">
var viewModel = function(){
this.settings = ko.observableArray([{name: "Bungle",dtype:"text"},{name: "George",dtype: "checkbox"},{name: "Zippy",dtype:"text"}]);
};
ko.applyBindings(new viewModel());
</script>
</body>
</html>
上面的代码也在小提琴http://jsfiddle.net/uByVQ/中被捕获。虽然,小提琴中捕获的场景在 chrome 中运行良好,但在 IE8 中无法正常运行。我得到错误
“不支持此命令”。
我正在使用淘汰赛 2.3
谁能指出我的解决方法?
谢谢。