0
我正在使用MVC,我想將一個行索引(剃刀變量)傳遞給JS。如何將剃鬚刀變量傳遞給js
@for (int i = 0; i < Model.Topics.Count(); i++)
{
<tr id="[email protected]">
<td class="IsReadOnly">@Html.TextBoxFor(model => model.Topics[i].NumberOfNoDifficulltySet, new { @readonly = "readonly", @class = "SubjectTB", @onchange = "CheckNoDiff(this);" })</td>
</tr>
}
的js函數是CheckNoDiff(本) - 我想傳遞@i參數 - 即是行索引作爲參數傳遞給JS。我怎麼做? 以及如何接收js上的參數值?
任何幫助是最受歡迎的 - 關心, Lior。
我不熟悉剃刀,但你有沒有嘗試過'CheckNoDiff(@i)'? –
你想要http://webdesign.maratz.com/lab/row_index/這樣嗎? – Zealous