我正在尝试从jQuery Mobile开始,但是当我尝试使用叠加幻灯片创建左侧面板时,我陷入困境。这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>- test-</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"> </script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="panel" id="testPanel" data-theme="e" data-position="left" data-display="overlay">
<h3>Default panel options</h3>
<p>This panel has all the default options: positioned on the left with the reveal display mode. The panel markup is <em>before</em> the header, content and footer in the source order.</p>
<p>To close, click off the panel, swipe left or right, hit the Esc key, or use the button below:</p>
</div>
<div data-role="header">
<h1>test</h1>
<a href="#testPanel" data-role="button" data-icon="plus" data-iconpos="notext">Contact</a>
</div>
<div data-role="content">
</div>
<div data-role="footer" data-position="fixed">
<h4>Copyright 2013 - All Rights Reserved -</h4>
</div>
</div>
</body>
</html>
它不起作用,当我点击我的链接按钮时,我收到此消息“加载页面时出错”,我的面板内容已经显示在页面中。谢谢你的帮助!
答案 0 :(得分:2)
好像您正在使用jQuery
和jQuery Mobile
框架的过时版本。我建议更新到最新版本。
这是使用jQuery 1.9.1和jQuery Mobile 1.3.1的相同标记的working demo
答案 1 :(得分:1)
滑动面板在JQM 1.3版本中引入。所以它不适用于其他版本。使用jQuery 1.7.2-1.9.1 for JQM 1.3
有关详细信息,请参阅博客文章:http://jquerymobile.com/blog/2013/02/20/jquery-mobile-1-3-0-released/
答案 2 :(得分:1)
如果这不是您的索引页面,那么您很可能通过<a href="yourpage.html>Page</a>
导航到它,在这种情况下,jquery使用Ajax请求从一个页面导航到另一个页面,ajax请求不会加载您的整个内容页面,它只加载<body>
标签的内容,即您在<head>
标签内写的任何脚本都不会被加载,因此页面将无法正常工作,您将面临错误
要解决此问题,您需要在data-ajax="false"
属性中使用<a>
来阻止jquery mobile使用Ajax调用来加载您的页面。
如果是您的索引页面,那么请通过js代码,以便我们检查它 在所有情况下检查这些链接 for loading jqm pages和此链接problem of ajax call in jqm