任何人都可以帮忙吗?
pageinit不会触发!
JS
$(document).off("pageinit pageshow", "#fachub").on("pageinit", "#fachub", function() {
alert("Hello");
});
HTML
<html>
<head>
<script src="../js/script.js"></script>
</head>
<body>
<div data-role="page" class="jqm-demos jqm-home jqm-cori carehub" data-theme="c" id="fachub">
<h3 id="appendtoh3">Facilities Hub</h3>
</div>
<!-- /page -->
</body>
</html>
当我在浏览器上加载页面时,我根本没有收到任何警报, 它只是空白页。
答案 0 :(得分:0)
尝试使用pagecreate
代替pageinit
。 documentation表示在jQM 1.4.0中不推荐使用pageinit。
$(document).off("pagecreate pageshow", "#fachub").on("pagecreate", "#fachub", function() {
alert("Hello");
});