gpt4 book ai didi

javascript - jQuery 移动加载

转载 作者:行者123 更新时间:2023-11-30 13:07:21 25 4
gpt4 key购买 nike

我想在我正在构建的网站的移动版本上的图片库上有一些滑动功能,所以我一直在使用 jQuery,我想我会使用 jQuery Mobile swipeleftswiperight 事件。这一切都很好,但我注意到当页面加载时,我在页面上看到加载字样。

这是加载小部件吗?如果是这样,我该如何设置它以使其不显示?

最佳答案

您可以通过以下方式关闭它:

$( document ).bind( 'mobileinit', function(){
$.mobile.loader.prototype.options.text = "loading";
$.mobile.loader.prototype.options.textVisible = false;
$.mobile.loader.prototype.options.theme = "a";
$.mobile.loader.prototype.options.html = "";
});

知道必须在 HEAD 内初始化 jQuery Mobile 之前初始化此 block 也很好,如下所示:

<!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://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>
<script>
$( document ).bind( 'mobileinit', function(){
$.mobile.loader.prototype.options.text = "loading";
$.mobile.loader.prototype.options.textVisible = false;
$.mobile.loader.prototype.options.theme = "a";
$.mobile.loader.prototype.options.html = "";
});
</script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>

查找有关此功能的更多信息 here .

关于javascript - jQuery 移动加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15206515/

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