谁能告诉我如何将数据绑定到iframe使用Knockout?我试过这样做,如下所示,但它没有按预期工作:
<iframe data-bind ="attr: { src: testcontent}"></iframe>
Run Code Online (Sandbox Code Playgroud)
和Javascript:
var ViewModel = function (content) {
this.testcontent = ko.observable(content);
};
ko.applyBindings(new ViewModel("Hello World!!"));
Run Code Online (Sandbox Code Playgroud)
我想将文本"Hello Content"添加到iframe.有人可以帮我这个吗?