下面的小提琴在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);
});
如何修复此问题?感谢。