如何使用此文本框添加按键事件?
@Html.TextBox("txtbx1", "", new {...} )
您可以执行以下操作:
@Html.TextBox("txtbx1", "", new { onkeydown="MyFunction();" } )
像这样试试。
称呼:
@Html.TextBoxFor(model => model.BoardSizeX, new { @onkeydown = "return Foo(event, $(this).val());"})
功能:
function foo(event, currentValue) {
console.log(event);
console.log(currentValue);
return true;
}