这种情况应该采用什么方法。我希望页面在完成所需的所有功能后转到下一页。
所以,例如。完成page1.html的所有函数后,它将调用函数next_page()。
next_page()函数将评估当前页面并添加“ 1 ”。所以从page2.html现在它将是page3.html。page3.html还将包含与前一个 html 相同的函数,在完成所有函数之后,它将调用next_page()函数,该函数也将评估当前并递增它。
//current_url = "mysite.com/page1.html"
var current_url = window.location;
var end_page = "mysite.com/page12.html"
var increment_url = eval(current_ur + 1 );
if(current_url != end_page ) {
setTimeout(next_page,2000)
}
else {
alert("this is the last page!")
}
function next_page() {
window.location.replace(increment_url);
}