gpt4 book ai didi

javascript - 如何使用 JQuery Mobile 为外部 HTML 文件绑定(bind)事件 "pageshow"

转载 作者:行者123 更新时间:2023-12-02 18:57:20 25 4
gpt4 key购买 nike

我正在使用 JQuery Mobile(版本 1.3.0)开发一个 Web 应用程序。如果只有一个 HTML 文件,我可以将“pageshow”事件绑定(bind)到页面 div:

<!DOCTYPE HTML>
<html>
<head>
<title>Funil de Vendas</title>
<meta http-equiv="Content-type" name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<script src="lib/jquery-1.8.2.min.js"></script>
<script src="lib/jquery.mobile-1.3.0.min.js"></script>

<script>
var nice = false;
$(document).ready( function(){
$("#other_page").bind('pageshow',function() {
alert('The page was called!');
});
});
</script>
</head>
<body>
<div data-role="page" class="Page" id="home_page">
<div data-role="content">
<a data-role="button" href="#other_page" data-inline="true" style="width:300px;">Iniciar</a>
</div>
</div>
</div>

<div data-role="page" class="Page" id="other_page">
<div data-role="content">
...
</div>
...
...
...
</div>
</body></html>

如何使用多个 HTML 文件执行相同操作。我无法绑定(bind)到该页面,因为该 div 位于另一个 HTML 文件中。

<div data-role="page" class="Page" id="home_page">
<div data-role="content">
<a data-role="button" href="other_page.html" data-inline="true" style="width:300px;">Iniciar</a>
</div>
</div>

提前致谢!

最佳答案

这里有两种可能的方法:

第一个解决方案。 如果您使用多个 HTML 文件,并且所有文件都通过 ajax 加载(这是标准的 jQuery Mobile 页面加载方式)。在这种情况下,所有的 javascript 都必须加载到第一个 html 文件中,因为 jQM 将只加载其他 html 文件的 BODY 内容。

示例:

index.html:

    <!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
<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 src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script>
$(document).on('pagebeforeshow', '#index', function(){
alert('This is a first page!');
});

$(document).on('pagebeforeshow', '#second', function(){
alert('This is a second page!');
});
</script>
</head>
<body>
<div data-role="page" id="index" data-theme="b">
<div data-role="header" data-theme="a">
<h3>First page</h3>
</div>

<div data-role="content">
<a data-role="button" id="some-btn" href="second.html">Open next page</a>
</div>

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

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

第二个.html:

    <div data-role="page" id="second" data-theme="b">
<div data-role="header" data-theme="a">
<h3>Second page</h3>
</div>

<div data-role="content">
This is a second page
</div>

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

</div>
</div>

第二种解决方案。如果您有多个 HTML 文件,但所有页面都通过具有 rel="external"属性的链接进行链接,或者在应用程序级别上关闭了 ajax。在这种情况下,每个 html 页面都必须有自己的 HEAD 和 BODY。每个页面都必须有自己的 javascript。

示例:

index.html:

    <!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
<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 src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script>
$(document).on('pagebeforeshow', '#index', function(){
alert('This is a first page!');
});
</script>
</head>
<body>
<div data-role="page" id="index" data-theme="b">
<div data-role="header" data-theme="a">
<h3>First page</h3>
</div>

<div data-role="content">
<a data-role="button" id="some-btn" href="second.html" rel="external">Open next page</a>
</div>

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

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

第二个.html:

    <!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
<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 src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script>
$(document).on('pagebeforeshow', '#second', function(){
alert('This is a second page!');
});
</script>
</head>
<body>
<div data-role="page" id="second" data-theme="b">
<div data-role="header" data-theme="a">
<h3>Second page</h3>
</div>

<div data-role="content">
This is a second page
</div>

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

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

关于javascript - 如何使用 JQuery Mobile 为外部 HTML 文件绑定(bind)事件 "pageshow",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15203560/

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