我有以下使用 JQuery Mobile 的代码。这里的重点是我希望在触发“pageshow”事件时执行一些代码。
下面的所有代码都在 Chrome 上运行良好。我可以看到控制台日志。但是,当我将其作为 Phonegap 应用程序的一部分运行时,我从未触发过“pageshow”事件。
已经调查了一段时间,但没有成功。希望有人可以向我解释为什么我的事件丢失了,以及让这个代码在 Phonegap 上运行所需的步骤。
详细信息.html
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/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>
<link rel="stylesheet" href="css/index.css" />
<!-- cordova -->
<script src="cordova-2.2.0.js"></script>
</head>
<body>
<div data-role="page" id="details_page">
<a href="places.html" data-transition="slide" data-direction="reverse">Back</a>
<h3>Hi I am second page</h3>
</div>
<script src="js/details.js"></script>
</body>
</html>
细节.js
$("#details_page").live("pageshow", function() {
console.log('I am alive! (details.html)');
});