如何自动重定向到我的 WebApp 的其他页面
我目前正在 jQTouch 下开发一个 Web 应用程序,我想知道应该如何将用户自动重定向到我的 Web 应用程序的另一个页面。
例如,假设我有以下代码:
<div id="foo1">
...
</div>
<div id="foo2">
...
</div>
现在,假设当前可见的块是 foo1
。我应该在 JavaScript 文件中编写哪些代码来重定向到块 foo2
(就好像我单击了 href="#foo2"
的链接)?
谢谢并抱歉我的英语(我是法国人)。
I am currently developing a Web App under jQTouch, and I want to know how I should proceed to redirect the user automatically to another page of my Web App.
For instance, let's suppose I have this code :
<div id="foo1">
...
</div>
<div id="foo2">
...
</div>
Now, let's suppose that the currently visible block is foo1
. Which code should I write in my JavaScript file to redirect to block foo2
(as though I clicked a link with href="#foo2"
)?
Thanks and sorry for my English (I'm French).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
jQT.goTo()
转移到另一个页面,例如如果您只想触发链接上的点击事件,您可以使用
click< jQuery 中的 /code>
函数:
You may use the
jQT.goTo()
to transfer to another page, e.g.If you just want to trigger a click event on a link, you could use the
click
function in jQuery:标准链接
不起作用,但您走在正确的轨道上,它只需处于正确的设置(按钮或列表)即可。所以要么:
要么
会起作用。
A standard link
will not work, but you are on the right track, it just has to be in the correct setting (either a button, or a list). so either:
or
will work.