此代码直接取自 knockoutjs.com 教程:
<ul data-bind="foreach: months">
<li>
The current item is: <b data-bind="text: $data"></b>
</li>
</ul>
<script type="text/javascript">
ko.applyBindings({
months: [ 'Jan', 'Feb', 'Mar', 'etc' ]
});
</script>
当我使用 IE 8 在http://jsfiddle.net/SaZv8/上运行它时,只要您不包含 jQuery 1.9.0,它就可以工作。包含 1.9.0 时会出现Object doesn't support this property or method
错误。
有什么想法吗?谢谢!