这是我的 js 文件:
function AppViewModel()
{
this.firstName = ko.observable("Bert");
this.lastName = ko.observable("Bertington");
}
ko.applyBindings(AppViewModel());
这是我的 html 文件:
<html>
<head>
<script type='text/javascript' src='ko.js'></script>
<script type='text/javascript' src='knockout-2.1.0.debug.js'></script>
</head>
<body>
<p>First name: <strong data-bind="text: firstName"></strong></p>
<p>Last name: <strong data-bind="text: lastName"></strong></p>
<p>First name: <input data-bind="value: firstName" /></p>
<p>Last name: <input data-bind="value: lastName" /></p>
</body>
</html>
未捕获的 ReferenceError: ko is not defined。
有人可以帮我弄这个吗 ?
提前致谢