0

我的(cms)网站上有一个滑块导航,该导航中的链接需要在 1 秒后加载 URL。

导航现在看起来像这样:

<div class="slides">
  <div class="slideItem"><a href="page1.html">link1</a></div>
  <div class="slideItem"><a href="page2.html">link2</a></div>
  <div class="slideItem"><a href="page3.html">link3</a></div>
</div>

我发现的这个下面的脚本可以以某种方式在 a href 中使用吗?(如果这有效)。

setTimeout( "window.location.href = 'http://domain.com/url.html'", 5*1000 );
4

1 回答 1

0

这将在 5 秒后将用户重定向到http://domain.com/url.html

setTimeout( "window.location.href = 'http://domain.com/url.html'", 5*1000 );

如果你想要 1 秒延迟使用 1000 作为第二个参数,你有没有检查过这个脚本?你想达到什么目的??

于 2013-09-23T08:13:50.223 回答