使用 JQTouch for iPhone 在不同 HTML 页面之间进行转换
我正在尝试在 JQTouch 和 PhoneGap 的帮助下使用 HTML/JavaScript/CSS 创建一个简单的 iPhone 应用程序。对于访问网页的不同部分,转换工作正常,但是当我尝试对不同的网页执行相同的操作时,它们不起作用。
我正在这样做:
<li><a class="slide" href="http://www.flickr.com/photos/remysharp/3047035327/" title="Tall Glow"><img src="http://farm4.static.flickr.com/3011/3047035327_ca12fb2397_s.jpg" height="75" width="75" alt="Tall Glow" /></a></li>
请问有人知道出了什么问题吗?
C.
I am trying to create a simple iPhone application using HTML/JavaScript/CSS with the help of JQTouch and PhoneGap. For accessing different parts of a web page, the transitions work fine, however when I try to do the same for different web pages, they do not work.
I am doing this:
<li><a class="slide" href="http://www.flickr.com/photos/remysharp/3047035327/" title="Tall Glow"><img src="http://farm4.static.flickr.com/3011/3047035327_ca12fb2397_s.jpg" height="75" width="75" alt="Tall Glow" /></a></li>
Does anyone knwo whats wrong pleasE?
C.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jqtouch只能在div中滑动,即单个网页的一部分。当您点击链接时,它只会加载您导航到的任何页面。
jqtouch can only slide in divs, i.e. parts of a single web page. when you follow links it just loads whatever page you navigated to.
您应该尝试在 IFRAME 中加载外部链接。只要您链接到的网站没有框架破坏程序,您就应该能够留在自己的网站上并显示外部页面的内容。
You should try loading your external link in an IFRAME. As long as the site you are linking to doesn't have a frame buster, you should be able to stay on your own site and display the content of the external page.