jquery mobile 1.4和android浏览器存在问题

jquery mobile 1.4和android浏览器存在问题,android,jquery,mobile,browser,Android,Jquery,Mobile,Browser,我将代码从jqm 1.3.2更新为1.4.0。为了确保升级后没有问题,我将导航按钮复制到一个测试文件中。果不其然,它在三星Galaxy 3上的手机浏览器上不起作用,但在Chrome上却可以正常工作。在Win7笔记本电脑上,它在Chrome、FF 26.0和IE 11中也能正常工作。这是我的密码- <!DOCTYPE html> <html> <head> <title>whnwh</title> <meta name="

我将代码从jqm 1.3.2更新为1.4.0。为了确保升级后没有问题,我将导航按钮复制到一个测试文件中。果不其然,它在三星Galaxy 3上的手机浏览器上不起作用,但在Chrome上却可以正常工作。在Win7笔记本电脑上,它在Chrome、FF 26.0和IE 11中也能正常工作。这是我的密码-

<!DOCTYPE html>
<html>

<head>
<title>whnwh</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="css/jquery.mobile-1.4.0.css" />
    <script src="js/jquery-1.10.2.js"></script>
    <script src="js/jquery.mobile-1.4.0.js"></script>
</head>

<body>

    <div data-role="page" id="p_home" data-title="when n where" data-theme="a">

        <div data-role="header"><!-- header -->
            <p />
            <img src="images/logo.png" />
        </div><!-- /header -->

        <div role="main" class="ui-content">
        <div data-role="controlgroup" data-mini="false" data-corners="false" data-type="horizontal"><!-- navbar -->
            <a href="index.html" class="ui-btn ui-corner-all ui-btn-inline" id="home">home</a> 
            <a href="" class="ui-btn ui-corner-all ui-btn-inline" id="my">my calendar</a> 
            <a href="add.html" class="ui-btn ui-corner-all ui-btn-inline" id="add">add</a> 
            <a href="authreg.html" class="ui-btn ui-corner-all ui-btn-inline" id="sgnin">sign in</a> 
            <a href="" class="ui-btn ui-shadow ui-corner-all ui-btn-inline" id="sgnout">sign out</a> 
        </div>
        </div><!-- /navbar -->

    </div><!-- page p_home -->
    </script>

</body>
</html>
以上页面在Galaxy browser中的外观如下-

Galaxy上的Chrome浏览器以及笔记本电脑上的所有浏览器-

那么,我能做些什么来解决这个问题呢

提前谢谢


RD

我想要么没有人遇到这个问题,要么没有人找到答案。 我花了一天时间迁移和修复1.3.2和1.4.0之间的所有不兼容。 我很沮丧,将返回到1.3.2 jqm,稍后再执行此任务。

您并不孤单! 以下配置与我的android galaxy 2不兼容

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.1/jquery.mobile-1.4.1.min.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.1/jquery.mobile-1.4.1.min.js"></script>  
我分别测试了jquery-1.10.2.min.js,效果很好。这只是因为jquery.mobile-1.4.1.min.js

以前的jquery移动版可以正常工作

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

我在三星galaxy s4原生android浏览器中也面临同样的问题,如果有人得到任何解决方案,请与我们分享。