乔纳森·斯塔克书中的练习后出现的问题

发布于 2024-11-29 15:42:59 字数 444 浏览 0 评论 0原文

我正在阅读 Jonathan Stark 的使用 HTML、CSS 和 JavaScript 构建 iPhone 应用程序并进行练习。

我在错误控制台中遇到一些错误,但我不知道如何修复它。

Could not find an element with the id "jqt", so the body id has been set to "jqt". If you are having any problems, wrapping your panels in a div with the id "jqt" might help.  jqtouch.js:104

我正在使用 jQTouch b3.1

请帮忙
谢谢~

I was reading and following along exercise in Jonathan Stark's Building iPhone Apps with HTML, CSS, and JavaScript.

I am having some error in the error console but I doesn't know how to fix it.

Could not find an element with the id "jqt", so the body id has been set to "jqt". If you are having any problems, wrapping your panels in a div with the id "jqt" might help.  jqtouch.js:104

I am using jQTouch b3.1

Please help
Thanks~

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生再见 2024-12-06 15:42:59

这看起来更像是警告而不是错误。我怀疑您使用的 jQTouch 版本比书中的版本更高。早期版本的 jQT 的页面直接位于 body 下,例如,

<body>
  <div id="page1"></div>
  <div id="page2"></div>
</body>

但较新版本的 jQT 的页面位于 div#jqt 下,因此允许包含固定的导航栏,例如 tabbar控制:

<body>
  <div id="jqt">
    <div id="page1"></div>
    <div id="page2"></div>
  </div>
  <!-- you could have something fixed navigation element here -->
</body>

That seems more like a warning than an error. I suspect you're using a later version of jQTouch than the one in the book. Earlier version of jQT has pages directly under body, e.g.

<body>
  <div id="page1"></div>
  <div id="page2"></div>
</body>

But later version of jQT has pages under div#jqt, so to allow the inclusion of a fixed navigation bar, e.g. tabbar control:

<body>
  <div id="jqt">
    <div id="page1"></div>
    <div id="page2"></div>
  </div>
  <!-- you could have something fixed navigation element here -->
</body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文