gpt4 book ai didi

jQuery Mobile 重复事件

转载 作者:行者123 更新时间:2023-12-01 03:02:38 26 4
gpt4 key购买 nike

这是一个让我抓狂的新手问题。根据jQuery mobile site ,我已将 jQueryjQuery mobile 包含到 HTML 的 head 中。

然后,当我为任何事件分配监听器时,它会运行两次。示例:

<!doctype html>
<html>
<head>
<meta http-equiv="imagetoolbar" content="false" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<style>
.slide {width:400px; height:400px; padding:40px; border:1px solid black;}
</style>
<link href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
</head>
<body>
<div class="slide">
<h1>1</h1>
</div>
<script type="text/javascript">
$(function() {
$('.slide').tap(function() {
alert('tapped!');
});
});
</script>
</body>
</html>

然后,如果我点击(或在桌面浏览器中单击)该幻灯片 div,会显示两个警报。如果我评论包含 jQuery mobile 的行,它只会运行一次。

这里要遵循什么路线?

最佳答案

如果您将脚本移至 <head>标签,它只会触发一次。我认为这与疯狂的 jQuery Mobile 页面缓存有关。

关于jQuery Mobile 重复事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7024388/

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