私は最近ノックアウトが大好きで、これが私の最初のコピー アンド ペースト ソース スニップ :rolleyes: です。運が悪いと、file.php の同じディレクトリにノックアウト .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>