下面的小提琴在 Chrome 和 Firefox 中运行良好,但在 IE 9 中运行良好
$('#person-template').load('/echo/html/', {
html: '<h3 data-bind="text: name"></h3><p>Credits: <span data-bind="text: credits"></span></p>'
}, function() {
//nothing happens in IE
ko.applyBindings(vm);
});
如何解决这个问题?谢谢。