jQuery移动链接不工作

jQuery移动链接不工作,jquery,Jquery,我正在测试以下代码,以打开w3schools的面板。它在笔记本电脑上运行良好,但当我将其加载到我的Android Note 3设备上时,当你触摸Open panel链接时,面板不会显示,什么也不会发生!需要帮忙吗? 思南 面板标题 您可以通过单击面板外部、按Esc键或通过滑动来关闭面板 页眉 单击下面的按钮打开面板 页脚 您可能在设备中打开了应用程序,但其中没有internet连接。我这么说是因为您使用了一些位于jqueryrepo中的库。请尝试使用Internet连接,或者直接下载并链接它们

我正在测试以下代码,以打开w3schools的面板。它在笔记本电脑上运行良好,但当我将其加载到我的Android Note 3设备上时,当你触摸Open panel链接时,面板不会显示,什么也不会发生!需要帮忙吗? 思南


面板标题
您可以通过单击面板外部、按Esc键或通过滑动来关闭面板

页眉 单击下面的按钮打开面板

页脚
您可能在设备中打开了应用程序,但其中没有internet连接。我这么说是因为您使用了一些位于jqueryrepo中的库。请尝试使用Internet连接,或者直接下载并链接它们,然后查看。

您使用的是webview吗?如果不是,这不是一个安卓问题,把你的标签做好。我正在使用Phonegap生成一个apk文件,加载到安卓设备上。将标签改为jQuery。谢谢你。该设备已连接到互联网。阿努帕姆:我采纳了你的建议,在本地下载了这些文件,效果很好。非常感谢。
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.css">
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.js"></script>
</head>
<body>

<div data-role="page" id="pageone">
  <div data-role="panel" id="myPanel"> 
    <h2>Panel Header</h2>
    <p>You can close the panel by clicking outside the panel, pressing the Esc key or by swiping.</p>
  </div> 

  <div data-role="header">
    <h1>Page Header</h1>
  </div>

  <div data-role="main" class="ui-content">
    <p>Click on the button below to open the Panel.</p>
    <a href="#myPanel" class="ui-btn ui-btn-inline ui-corner-all ui-shadow">Open Panel</a>
  </div>

  <div data-role="footer">
    <h1>Page Footer</h1>
  </div> 
</div> 

</body>
</html>