我有一个应用程序,我使用jQuery mobile为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 mobile的新手,我们将不胜感激。
谢谢!
答案 0 :(得分:2)
您是否在表单中添加了内容?
@using (Html.BeginForm("Login", "Account", FormMethod.Post))
{
...
<input type="submit" value="Log On" id="mobile_LogOn"/>
}
它应该有用。