jquery-mobile – 如何阻止JQM设置页面?

前端之家收集整理的这篇文章主要介绍了jquery-mobile – 如何阻止JQM设置页面?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个JQM应用程序与一个特定的页面,我不想要样式.

所有我发现到目前为止,data-role =’none’ – 但是我不想将它应用到页面上的每个元素…有没有办法关闭这个页面

解决方法

您可以使用$.mobile.ignoreContentEnabled = true结合使用data-enhancement =“false”来停止jQuery Mobile对伪页面自动增强:
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
$(document).on('mobileinit',function () {
    $.mobile.ignoreContentEnabled = true;
});
</script>
<script src="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.js"></script>

<div data-enhance="false" data-role="page">
    ...
</div>​

您更改ignoreContentEnabled标志的原因是因为搜索父元素的数据属性cpu密集型,因此默认情况下关闭该元素.

这是一个演示:http://jsfiddle.net/ZtJyL/1/

原文链接:https://www.f2er.com/jquery/179410.html

猜你在找的jQuery相关文章