我正在使用asp.net,mvc3,EFCodeFirst和jquery。我想根据文本框中的“验证”输入动态生成图像(基于文本框通过验证时触发的事件)
离。 用户输入“3”和3个图像。 用户输入'a'并且没有任何反应,因为它未通过验证。
我应该在文本框中订阅哪个事件?
我的模特:
[Required(ErrorMessage = "Please input how many cells to create")]
[Range(5, 100, ErrorMessage = "Cells needs to be between 5 and 100")]
public int CellsPerGeneration { get; set; }
我的观点:
@Html.ValidationSummary(true)
<td>
@Html.TextBoxFor(x => x.CellsPerGeneration, new { id="numOfCells" })
</td>
我需要知道的是我的脚本中要引用的事件。
提前致谢!
答案 0 :(得分:1)
invalidHandler
就是你所需要的。
例如
$("#Form").validate({
invalidHandler: function (form, validator) {
...
...
}
});