gpt4 book ai didi

javascript - JQuery Mobile 自动添加奇怪的加载消息

转载 作者:行者123 更新时间:2023-11-28 13:22:08 28 4
gpt4 key购买 nike

我在我的网站 ( http://www.simpleprods.com ) 上添加了对 Jquery Mobile 的引用,以获取 vmousedown、vmouseup 等事件。我只需要那些,尽管 JQuery Mobile 烦人地向我的网页添加了一些丑陋的自动加载消息。它 100% 来自 JQuery 移动版。 我只需要 vmousedown、vmouseup 和 vmousemove,我不需要任何加载消息和那个橙色框。我已经找到了如何取消消息,但橙色框就是无法摆脱。

有人知道怎么办吗? 如果有人能告诉我如何只获取 vmousedown、vmouseup 和 vmousemove 而没有 JQuery Mobile 具有的所有其他内容,我会很高兴...

最佳答案

您可以重建 jQuery Mobile 框架以仅具有您需要的功能。

转到此站点:

http://jquerymobile.com/download-builder/

选择:

虚拟鼠标 (vmouse) 绑定(bind)

之后只需点击构建我的下载

示例:

<!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 type="text/javascript" src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>
<script src="jquery.mobile.custom.js"></script>
<script>
$(document).on('vmousedown', '[data-role="content"]', function(){
alert('asdas');
});
</script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="a" data-role="header">
<h3>
First Page
</h3>
</div><p></p>

<div data-role="content" style="height: 100px; width: 500px; background: #aabbcc;">
<div data-role="popup" id="initialpopup" data-overlay-theme="a" data-theme="a">Foobar</div>
</div>

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

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

您只需从构建工具中提供一个jquery.mobile.custom.js文件。

关于javascript - JQuery Mobile 自动添加奇怪的加载消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15440200/

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