jQuery 倒计时新布局到期而不是新 url

发布于 2024-10-08 20:53:59 字数 217 浏览 2 评论 0原文

我使用 jquery 倒计时 http://keith-wood.name/countdown.html

我想要该页面倒计时完成后刷新并重新加载新的页面布局(在同一网址上)我想出了如何重定向,但我正在绞尽脑汁地找出页面刷新到新布局的方法。

欢迎任何帮助!

Im using jquery countdown http://keith-wood.name/countdown.html

I want the page to refresh when the countdown is finished and reload a new page layout ( on the same url) I figured out how to redirect but am racking my head to figure out page refresh to new layout.

Any help welcome!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

伏妖词 2024-10-15 20:53:59

我希望页面刷新时
倒计时结束并重新加载新的
页面布局(在同一网址上)I
弄清楚如何重定向,但我
绞尽脑汁找出页面
刷新到新布局。

如果你想刷新页面,你可以这样做:

document.location.reload();

但是当然你会在必要的地方放置上面的行,例如计数器完成。

I want the page to refresh when the
countdown is finished and reload a new
page layout ( on the same url) I
figured out how to redirect but am
racking my head to figure out page
refresh to new layout.

If you want to refresh the page, you can do this:

document.location.reload();

But off course you would put above line where necessary for example the counter finishes.

Hello爱情风 2024-10-15 20:53:59

就我个人而言,我更喜欢 jquery 插件 doTimeout

只需添加在新窗口中打开:

$.doTimeout( 2000, function(){
  return window.open(location.href, '_blank');
});

或者只是在同一窗口中打开:

$.doTimeout( 2000, function(){
  return window.location(location.href);
});

Personally i prefere the jquery plugin doTimeout.

Just add to open in a new window :

$.doTimeout( 2000, function(){
  return window.open(location.href, '_blank');
});

Or just this to open in the same window :

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