gpt4 book ai didi

javascript - 为什么 jQuery 页面事件没有被触发?

转载 作者:行者123 更新时间:2023-11-28 20:32:20 24 4
gpt4 key购买 nike

我有一个带有 2 个 JQM 页面的简单 html:

<!DOCTYPE html> 
<html>
<head>
<title>Test table</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<script>
$(function(event, ui) {
console.log('Whole document (+page 1) ready');
});

// Unreachable - doesn't matter which event is "on"
$('#page_test2').on('pagecreate', function(event, ui) {
console.log('Page 2 create event fired');
});
</script>
</head>
<body>
<div data-role="page" id="page_test1">
<div data-role="content">
<a href="#page_test2" data-role="button">Open next page</a>
</div>
</div>
<div data-role="page" id="page_test2">
<div data-role="content">
<a href="#" data-role="button" data-rel="back">Return to first page</a>
<div id="place">
</div>
</div>
</div>
</body>
</html>

发现使用“on”未到达 page2 事件处理程序。怎么了?在这里我发现了很多很长的话题,但答案却很不清楚。

最佳答案

将事件监听器应用于文档:

$(document).on('pagecreate', '#page_test2', function() {
//...
});

关于javascript - 为什么 jQuery 页面事件没有被触发?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16110589/

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