我做了一个landingpage.html
and index.html
,但是如何从登陆页面打开主页。我遇到的问题是,我将代码设置为 as 并且在如何使用它时遇到了麻烦。是否有任何简单的用于重定向页面的短代码?
function redirect_index{
$("#fold").toggle("fold");
setTimeout("redirect_index2()", 600);
}
function redirect_index2(){
document.location_href = "index.html";
}
$(document).ready(function(){
$("#enter_here").click(function(){
$("#fold").toggle("fold", {}, 1000);
setTimeout("redirect_index2()", 700);
});
});