gpt4 book ai didi

jquery - 在页面在 jquery mobile 中完全加载之前不要隐藏加载程序

转载 作者:行者123 更新时间:2023-12-03 23:00:37 24 4
gpt4 key购买 nike

我试图显示页面加载小部件直到页面完全加载,之后它应该隐藏......并且每次我点击任何 anchor 以传输到下一页时都会执行此过程..

支持我有三页...

<div data-role="page" id="home">....</div>
<div data-role="page" id="about">....</div>
<div data-role="page" id="contact">....</div>

我正在使用的脚本:-

$(document).on("pagecreate", function(event) { 
//alert("Take It Show");
$( ".ui-loader" ).loading( "hide" );
});

是否可以将 data-transition="slide" 这样的过渡添加到任何 anchor 或在其中使用 data-ajax="false"...? ?

最佳答案

工作示例:http://jsfiddle.net/Gajotres/Zr7Gf/

基本上,您只需要底层的 javascript。

HTML:

<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="a" data-role="header">
<h3>
First Page
</h3>
<a href="#second" class="ui-btn-right">Next</a>
</div>

<div data-role="content">

</div>

<div data-theme="a" data-role="footer" data-position="fixed">

</div>
</div>
<div data-role="page" id="second">
<div data-theme="a" data-role="header">
<h3>
First Page
</h3>
<a href="#index" class="ui-btn-left">Back</a>
</div>

<div data-role="content">

</div>

<div data-theme="a" data-role="footer" data-position="fixed">

</div>
</div>
</body>
</html>

Javascript:

$(document).on('pagebeforecreate', '[data-role="page"]', function(){     
var interval = setInterval(function(){
$.mobile.loading('show');
clearInterval(interval);
},1);
});

$(document).on('pageshow', '[data-role="page"]', function(){
var interval = setInterval(function(){
$.mobile.loading('hide');
clearInterval(interval);
},300);
});

关于jquery - 在页面在 jquery mobile 中完全加载之前不要隐藏加载程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16519546/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com