mvc RedirectToAction、mobile 重定向地址栏未改变
@using (Html.BeginForm("actionName", "controllerName", FormMethod.Post, new { data_ajax = "false" })){
}
主要是这一句:
new { data_ajax = "false" }
,当然也可以:
<script type="text/javascript">
$(document).bind("mobileinit", function (){ $.mobile.ajaxEnabled =false;});</script>