4

如何使用此文本框添加按键事件?

@Html.TextBox("txtbx1", "", new {...} )
4

2 回答 2

6

您可以执行以下操作:

@Html.TextBox("txtbx1", "", new { onkeydown="MyFunction();" } )
于 2013-07-23T17:44:52.187 回答
1

像这样试试。

称呼:

@Html.TextBoxFor(model => model.BoardSizeX, new { @onkeydown = "return Foo(event, $(this).val());"})

功能:

 function foo(event, currentValue) {
       console.log(event);
       console.log(currentValue);

       return true; 
}
于 2018-06-08T06:05:42.250 回答