我有一个应用程序,我正在使用 jQuery mobile for MVC 3 添加移动页面。到目前为止,它工作得很好,直到我需要一个提交按钮来点击控制器中的帖子。
我只是使用一个简单的输入按钮:
<div>
<div class="editor-label">
@Html.LabelFor(m => m.UserName)
</div>
<div class="editor-field">
@Html.NoAutoCompleteTextBoxFor(m => m.UserName)<br/>
@Html.ValidationMessageFor(m => m.UserName)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.Password)
</div>
<div class="editor-field">
@Html.PasswordFor(m => m.Password, new { AutoCompleteType = "None", autocomplete = "off" })<br/>
@Html.ValidationMessageFor(m => m.Password)
</div>
<p>
@Html.ActionLink("Recover username/password", "LocateLoginInfo")
</p>
<div>
<input type="submit" value="Log On" id="mobile_LogOn"/>
</div>
我是 jQuery 移动新手,任何帮助将不胜感激。
谢谢!