我正在使用 Jquery mobile 和 MVC4 在 VS2010 中开发移动应用程序。您能否告诉我如何在提交时最好地验证下面代码段中的文本框?我只需要检查它是否包含一个值。理想情况下,我想在此 div 下方放置一条错误消息。
<div data-theme="a" class="ui-grid-a">
<div class="ui-block-a">@Html.TextBox("id", "", new { @class = "mystyleclass", onclick = "this.value=''" })</div>
<div class="ui-block-b">
<button type="submit" data-theme="b">Search</button>
</div>
</div>