テキストバインディングが機能し、値が機能しないのはなぜですか.jqueryでIDを持つ要素を選択し、その値をコンソールに出力すると、値は正しいのに表示されません.
<center>
<h2>Popover Demo</h2>
<div data-bind="template: {name: 'popoverTemplate', foreach: commands}"></div>
</center>
<script type="text/html" id="popoverTemplate">
<div style="display:none;" data-bind="attr: {'id': $data.command + 'Content'}, template: {name: 'popoverContent', data: $data.content}"></div>
<a href="#" class="btn" data-bind='text: $data.command, popover: $data'></a>
</script>
<script type="text/html" id="popoverContent">
<p>Name: <input type="text" data-bind='value: $data.name'></p>
<p>Email: <b data-bind='text: $data.email'></b></p>
</script>
</p>
JSFiddle http://jsfiddle.net/mounir/V3nVd/15/の完全な例を次に示します。
ありがとう