从淘汰赛教程:
为什么这行得通?
<p>First name: <input data-bind="value: firstName" /></p>
虽然这没有?
<p>First name: <input data-bind="text: firstName" /></p>
视图模型
// This is a simple *viewmodel* - JavaScript that defines the data and behavior of your UI
function AppViewModel() {
this.firstName = "Bert";
this.lastName = "Bertington";
}