打印indexof对象作为敲除js中html元素的id

时间:2014-10-13 11:46:40

标签: html knockout.js

在下面的代码中,我需要将循环的索引作为html输入元素的Id

                    <input type="text" data-bind="text:Value">

我尝试了data-bind =&#34; text:$ index&#34; ,但我不能将其设置为Id属性。有谁知道怎么做?

2 个答案:

答案 0 :(得分:1)

如果您尝试设置元素的ID,请尝试:

data-bind="attr: {id: $index}"

答案 1 :(得分:0)

您正在使用input元素。尝试使用value代替text绑定:

<input type="text" data-bind="value: $index">