我最近非常喜欢淘汰赛,这是我的第一个复制粘贴源代码片段:rolleyes:。没有运气,我无法让它在本地主机服务器上运行,尽管我已经在 file.php 的同一目录中设置了 knockout.js。我希望有人能帮忙。
<script type="text/javascript" src="knockout210.js"></script>
<script type="text/javascript">
var ViewModel=function(first, last)
{
this.firstName=ko.observable(first);
this.lastName=ko.observable(last);
this.fullName=ko.computed(function()
{
return this.firstName()+" "+this.lastName();
},this);
}
ko.applyBindings(new ViewModel("Planet","Earth"));
</script>
<p>First Name: <input data-bind="value:firstName"/></p>
<p>Last Name: <input data-bind="value:lastName"/></p>
<h2>Hello, <span data-bind="text:fullName"></span>!</h2>