jQuery Mobile仅用于菜单

时间:2016-12-12 05:45:54

标签: jquery-mobile

我正在构建一个移动网站,我想在菜单上实现jQuery数据角色和其他很好的东西。

是否可以调整jQuery库以仅在菜单上工作并让其他所有网站导航“正常”?

1 个答案:

答案 0 :(得分:1)

您必须在jQuery Mobile配置文件中或HTML文件的头部设置选项$.mobile.ignoreContentEnabled = true - 此选项应在加载JQM之前设置:

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$(document).on('mobileinit', function () {
    $.mobile.ignoreContentEnabled = true;
});
</script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

然后,您可以将rel=external放入锚标记中 - 链接将在没有ajax的情况下加载,您的网址将&#34;导航正常&#34;

<a href="http://stackoverflow.com" rel="external" />Link without ajax</a>

在这里,您将找到有关此主题的JQM文档:

https://demos.jquerymobile.com/1.4.5/navigation-linking-pages/