gpt4 book ai didi

javascript - JQuery Mobile 重复的 Js/Js 在其他页面中不起作用

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

我在 Jquery 移动设备上实现 Javascript 时遇到问题,每次我从页面返回时,javascript 都会重复。

这里是示例代码:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>JS duplicated page1</title>

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
<link rel="stylesheet" href="css/style-mobile.css">

<script src="js/tes.js"></script>
</head>
<body>
<div class="demo-wrapper" data-role="page" data-theme="a" id="page1">
<div class="header" data-role="header" style="position:fixed; background-color:#004165;">
<div id="div1">
<span class="right">Click me</span>
<div id="option"><span style="color:white;">A B C</span></div>
</div>
</div>
<div id="separator" style="height:100px;"></div>
<a href="jsduplicate2.html" data-transition="slide">Go to page2</a>
</div>
</body>

这是另一页:

<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>JS duplicated page2</title>

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
<link rel="stylesheet" href="css/style-mobile.css">
</head>
<body>
<div class="demo-wrapper" data-role="page" data-theme="a" id="page2">

<div class="header" data-role="header" style="position:fixed; background-color:#004165;">
<div id="div1">
<span class="right">Click me</span>
<div id="option"><span style="color:white;">A B C</span></div>
</div>
</div>
<div id="separator" style="height:100px;"></div>
<a href="jsduplicate1.html" data-transition="slide">Go to page1</a>

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

这是自定义 JS:

$( document ).on( "pageshow", function() {
$(".header #option").toggle('inactive');
$(".header #option").hide();
$(".right").click(function(){
$(".header #option").toggle('inactive');
$(".header #option").show();
});
});

每次我从第 2 页返回时,当我单击它时,切换会运行 2 次。

如果我只在page1中初始化JS,当导航到page2时,JS不起作用。请帮忙..

最佳答案

第 2 页没有 script 标记,因此未加载。只需将其添加进去即可。

<head>
<script src="js/tes.js"></script>
</head>

Demo正在为我工​​作。

关于javascript - JQuery Mobile 重复的 Js/Js 在其他页面中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24626977/

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