javascript – Jquery Mobile使脚本执行两次

为什么测试消息显示两次:

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <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>
</head>
<body>
    <script type="text/javascript">
        alert("Test");
    </script>
</body>
</html>

我从http://jquerymobile.com/demos/1.2.0/docs/about/getting-started.html复制了标题,当我开始做一些例子时,我注意到我的javascript方法被调用了两次.

这是JsFiddle中的代码:

http://jsfiddle.net/LsxBW/2/

最佳答案 正如Explosion Pills所说,你必须遵守jQM规则.至少:

>对页面或页面使用适当的jQM markup

<div data-role="page" id="page1">
    <div data-role="header">
        <h1>Page Title</h1>
    </div><!-- /header -->
    <div data-role="content">    
        <p>Page content goes here.</p>        
    </div><!-- /content -->
    <div data-role="footer">
        <h4>Page Footer</h4>
    </div><!-- /footer -->
</div><!-- /page -->

> Use pageinit event instead of jQuery ready handler.
而不是

$(function() {   
    alert("Test");
});

使用

$(document).on("pageinit", "#page1", function(){
    alert("Test");
});

jsFiddle is here

点赞