jQuery移动对话框在chrome中自动关闭

时间:2013-08-23 06:51:03

标签: javascript jquery html mobile dialog

我目前正在开发一个jQuery移动页面。 我需要在对话框中显示错误消息,它在FF和IE中完美运行。 但是当我用chrome打开页面时,对话框将自动关闭。

这是我的代码:

<!DOCTYPE html>
<html>
<head>
    <title>Header</title>
    <meta name="viewport" id="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

    <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-2.0.3.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>  

    <script type="text/javascript">
        $(document).ready(function () {
            $.mobile.changePage('#errorDialog', { transition: 'pop', role: 'dialog' });
        }); 
    </script>
</head>
<body>
    <div data-role="page" data-theme="a">
        <div data-role="header" data-position="fixed">
            <h1>Home</h1>
        </div>
        <div data-role="footer" data-position="fixed">
            <h4>Footer</h4>
        </div>
    </div>

    <div id="errorDialog" data-role="dialog" data-close-btn="right" data-theme="a">
        <div data-role="header">
            <h1>Error</h1>
        </div>

        <div data-role="content">
            <p>Error Message...</p>
        </div>
    </div>
</body>
</html>

我做错了吗?

1 个答案:

答案 0 :(得分:3)

可能是您使用的jquerymobile版本的问题。使用以下代码:

<link rel=stylesheet href=http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css />
<script src=http://code.jquery.com/jquery-1.6.min.js></script>
<script src=http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js>
</script>

<script type="text/javascript">
$(document).ready(function () {
   setTimeout(function () {
    $.mobile.changePage('#errorDialog', { transition: 'pop', role: 'dialog' });
}, 100);
}); 
</script>
</head>
 <body>
<div data-role="page" data-theme="a">
    <div data-role="header" data-position="fixed">
        <h1>Home</h1>
    </div>
    <div data-role="footer" data-position="fixed">
        <h4>Footer</h4>
    </div>
</div>

<div id="errorDialog" data-role="dialog" data-close-btn="right" data-theme="a">
    <div data-role="header">
        <h1>Error</h1>
    </div>

    <div data-role="content">
        <p>Error Message...</p>
    </div>
  </div>
</body>
 </html>