jqtouch应用程序中页面切换时如何加载json数据?

发布于 2024-12-05 05:55:01 字数 1431 浏览 0 评论 0原文

我的应用程序正在使用 JQTouch。演示展示了如何获取 html 文件并将其显示在用户界面中,但我正在加载我想在预先存在的 DIV 中使用的 JSON。我不想创建一个单独的 people.html 并在服务器上生成它。

所以我有一个像这样的 DIV,我想将我的人员列表加载到 UL 中。

<div id="people">
<div class="toolbar">
    <h1>People</h1>
    <a href="#" class="back">Back</a>
</div>
<ul class="rounded">
    <li class="sep">F</li>
    <li><a href="#person">Flintstone, <em>Fred</em></a></li>
    <li><a href="#person">Flintstone, <em>Pebble</em></a></li>
    <li><a href="#person">Flintstone, <em>Wilma</em></a></li>
    <li class="sep">J</li>
    <li><a href="#person">Jetson, <em>Elroy</em></a></li>
    <li><a href="#person">Jetson, <em>George</em></a></li>
    <li><a href="#person">Jetson, <em>Jane</em></a></li>
    <li><a href="#person">Jetson, <em>Judy</em></a></li>
</ul>
</div>

该页面从我的应用程序开始时加载,代码如下所示(全部位于同一个 HTML 页面中):

..snip..
<li class="arrow"><a href="#people">View all</a></li>
..snip..

我需要做什么才能调用返回 JSON 的 people.aspx 服务?我想我需要使用 $.getJSON,从 JSON 创建 UL,然后调用 jqtouch 中的某些内容以转换到我的人员应用程序页面 (div)。

My application is using JQTouch. The demos show how to GET an html file and display it in the user interface, but I'm loading JSON that I would like to use in a pre-existing DIV. I don't want to create a separate people.html and generate that on the server.

So I have a DIV like this that I would like to load my list of people into the UL.

<div id="people">
<div class="toolbar">
    <h1>People</h1>
    <a href="#" class="back">Back</a>
</div>
<ul class="rounded">
    <li class="sep">F</li>
    <li><a href="#person">Flintstone, <em>Fred</em></a></li>
    <li><a href="#person">Flintstone, <em>Pebble</em></a></li>
    <li><a href="#person">Flintstone, <em>Wilma</em></a></li>
    <li class="sep">J</li>
    <li><a href="#person">Jetson, <em>Elroy</em></a></li>
    <li><a href="#person">Jetson, <em>George</em></a></li>
    <li><a href="#person">Jetson, <em>Jane</em></a></li>
    <li><a href="#person">Jetson, <em>Judy</em></a></li>
</ul>
</div>

This page is loaded from the start of my application with code that looks like this (it's all in the same HTML page):

..snip..
<li class="arrow"><a href="#people">View all</a></li>
..snip..

What do I need to do to call my people.aspx service which returns JSON? I think I need to use $.getJSON, create a UL from the JSON, and then call something in jqtouch to transition to my people application page (div).

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

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

发布评论

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

评论(1

双马尾 2024-12-12 05:55:01

我认为您使用 goTo 函数,例如

jQT.goTo("#people ")

这里有一个 jsfiddle 演示,但它没有测试 jqTouch 功能。

I think you use the goTo function, e.g.

jQT.goTo("#people")

There's a jsfiddle demo here, but it doesn't test the jqTouch functionality.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文