如题,
asp.net mvc3使用jquery.mobile的时候页面间跳转有时候会不进入controller,这是因为jquery.mobile框架内部导致。
想要实现页面加载跳转,可以为该链接添加一个 rel="external"
或者 data-ajax="false"
mvc3的写法
@Html.ActionLink("首页", "Main", "Home", null, new { data_icon = "arrow-l", data_theme = "b", data_ajax = "false" })
或者 @Html.ActionLink("公告", "Notice", "Home", null, new { data_icon = "arrow-u", data_theme = "b", rel = "external" })