如何自动重定向到我的 WebApp 的其他页面

发布于 2024-10-19 09:22:37 字数 376 浏览 1 评论 0原文

我目前正在 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 技术交流群。

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

发布评论

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

评论(2

何处潇湘 2024-10-26 09:22:37

您可以使用 jQT.goTo() 转移到另一个页面,例如

jQT.goTo('#foo2', 'slideup');

如果您只想触发链接上的点击事件,您可以使用 click< jQuery 中的 /code>函数:

<a id="goToFoo2" href="#foo2">Go To Foo2</a>
<script>$("#goToFoo2").click()</script>

You may use the jQT.goTo() to transfer to another page, e.g.

jQT.goTo('#foo2', 'slideup');

If you just want to trigger a click event on a link, you could use the click function in jQuery:

<a id="goToFoo2" href="#foo2">Go To Foo2</a>
<script>$("#goToFoo2").click()</script>
谎言 2024-10-26 09:22:37

标准链接

<a href="#foo2">Link</a>

不起作用,但您走在正确的轨道上,它只需处于正确的设置(按钮或列表)即可。所以要么:

<ul class="rounded">
   <li class="arrow">
       <a href="#foo2">Link</a>
   </li>
</ul>

要么

<a class="button" href="#foo2">Link</a>

会起作用。

A standard link

<a href="#foo2">Link</a>

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:

<ul class="rounded">
   <li class="arrow">
       <a href="#foo2">Link</a>
   </li>
</ul>

or

<a class="button" href="#foo2">Link</a>

will work.

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