0

我有一个应用程序,我正在使用 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 移动新手,任何帮助将不胜感激。

谢谢!

4

1 回答 1

2

您是否在表单中添加了内容?

@using (Html.BeginForm("Login", "Account", FormMethod.Post))
{
  ...
  <input type="submit" value="Log On" id="mobile_LogOn"/>
}

它应该工作。

于 2013-08-09T09:26:16.687 回答