KnockoutJSを使用しています。ドロップダウンのサブスクライブ機能にいる間。選択したドロップダウンのインデックスを取得する必要があります。
ドロップダウンがテーブル内にある場合(つまり、foreach tr)
HTML:
<table>
<tbody data-bind="foreach: Rows">
<tr>
<td>
<select data-bind="options: Materials, value: selectedMaterial,attr:{index:$(index)}"></select>
</td>
</tr>
</table>
脚本:
this.selectedMaterial.subscribe(function(data){
// I need to get the index value of the selectedMaterial
// i try to get like following code but its not working
var k =$(this).attr("index");
});