1

我想做的是;

刷新网站,同时更改包含数字的 URL 的一部分。假设你在一个网站上一张一张地查看图片;

图片/31 图片/32 图片/33

并且网站上没有幻灯片,因此您必须手动更改 URL 中的图像编号。我在这里要做的是以某种方式自动化这个过程。该数字将每 5 秒增加 1 个。那可能吗?

4

1 回答 1

2

USE HTML5

just think of a way how you will automate passing the variable to this function

 setInterval(function(){
  window.history.replaceState(“object or string”, “Title”, “/another-new-url)
    }, 5000);

check this: http://spoiledmilk.com/blog/html5-changing-the-browser-url-without-refreshing-page

于 2012-10-08T00:30:58.583 回答