新しいモバイル機能に関するMVC4の記事に続いて、NuGetパッケージを追加しましたjQuery.Mobile.MVC
。このパッケージは、とりわけ、jQuery Mobileの古いバージョン1.0.3b(現在のバージョンは1.1.0)をインストールし、次のように作成します_Layout.Mobile.cshtml
。
$(document).bind("mobileinit", function ()
{
// As of Beta 2, jQuery Mobile's Ajax navigation does not work in all cases (e.g.,
// when navigating from a mobile to a non-mobile page), hence disabling it.
$.mobile.ajaxEnabled = false;
});
正確に機能していないもの、バグが報告されているかどうか、およびそのバグのステータスについてのドキュメントが見つかりません。jQueryMobileForumで最も近い非古代の同様の言及は
http://forum.jquery.com/topic/ajax-navigation-system-is-causing-problems
その場合、OPの問題は「設計による」と見なされました。
それで...
Ajaxナビゲーションがすぐにオフになっているのはなぜですか?それはjQuery Mobile 1.1.0でも有効な懸念事項ですか?