加载JQuery Mobile空白页面

时间:2012-02-02 02:33:58

标签: jquery-mobile

我正在尝试将jQuery Mobile集成到现有的移动页面中。我想使用可折叠元素,并形成功能。

当我包含js文件并加载页面时,页面将呈现为空白。如果未包含它,则会正确呈现。我添加了data-role="page"和“内容”,如下所示:

在Firebug中查看我看到body元素上有'ui-mobile-viewport'类,它的可见性设置为隐藏;它的子元素有display = none

我在jquery-mobile-1.0.1.js的调试(第5014行)时在控制台中收到此错误:

    $el.prop is not a function
        if ( $el.prop("disabled") ) {

以下代码:

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title><%=PageTitle%></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/> 
<link rel="stylesheet" type="text/css" href="<%=CssPath%>/jquery.mobile-1.0.1.css" media="screen" />

<script type="text/javascript" src="<%=JsPathShared%>/jquery.js"></script>
<script type="text/javascript" src="<%=JsPath%>/page.js"></script>
<script type="text/javascript" src="<%=JsPath%>/jquery.mobile-1.0.1.js"></script>
</head>
<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">
<div data-role="page" id="page-wrap" >
<header>
  <%RenderBanner();%>

</header>
<div data-role="content" class="section-wrap">

  <%Render();%>
  <footer>
    <nav>
      <%RenderNavigation();%>
    </nav>
    <%RenderFooter();%>
  </footer>
</div>
</div>
<%=GoogleAnalytics()%>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

考虑从Github查看jQuery Mobile Boilerplate项目。它包含一个完整的jQuery Mobile项目以及可用于将代码与工作项目进行比较的代码片段。

https://github.com/commadelimited/jQuery-Mobile-Boilerplate