在 JQTouch 中加载带有动画的单独页面
我正在尝试使用 JQTouch 将数据库驱动的多项选择式学习网站(用 JSP 编写)转换为 iPhone 应用程序。
如果我将所有问答加载到同一文件中自己的 div 中,我可以使用主题标签链接轻松地在它们之间进行链接和动画,例如: a class="button" href="#question22"
不幸的是,这不切实际。网站当前工作的逻辑需要调用许多动态生成的页面;我无法将每个问题都包含在同一个平面文件中自己的 div 中。
我将如何动态(预)加载下一个问题(像 AskQuestion.jsp?questionId=Kzhctand 这样的 JSP 页面),然后在用户按下按钮后在应用程序中提供该问题?
感谢您提供的任何帮助。
——多诺万
I'm trying to convert a database-driven multiple-choice-style study website (written in JSP) into an iPhone app using JQTouch.
If I load all of the Q&As into their own divs in the same file I can easily link and animate between them using links to hashtags, like: a class="button" href="#question22"
Unfortunately this isn't practical. The logic of the website as it currently works requires calls to a number of dynamically generated pages; I can't include every question in its own div in the same flat file.
How would I go about dynamically (pre)loading the next question (a JSP page like AskQuestion.jsp?questionId=Kzhctand ) then serving that up within the app after the user presses a button?
Thanks for any help you might offer.
-Donovan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我为我的抽认卡系统做了类似的事情。
我有一个 div 表示当前卡片的“正面”和“背面”,当用户给出答案时,它会通过 ajax、json 和 php 的魔力加载下一张卡片。
这是答案页面的相关部分。
该函数通过发送 ajax 查询来处理用户响应。
在后端,我有一个名为 ajax.php 的 PHP 页面,以 JSON 形式生成下一张卡片。
I do something similar to this for my flashcard system.
I have a div for the "front" and the "back" of the current card, when the user gives their answer it loads the next card via the magic of ajax, json, and php.
Here is the relevant section of the answer page.
This is the function that handles the users response by sending an ajax query.
On the backend I have a PHP page called ajax.php generate the next card as JSON.