我制作了landingpage.html
和index.html
,但如何从着陆页打开主页。我遇到的问题是,我制作代码而且我遇到了如何使用它的麻烦。是否有用于重定向页面的简单ans短代码?
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);
});
});
答案 0 :(得分:0)
您的函数redirect_index
未正确声明:function redirect_index{
应为function redirect_index(){
,并且您的代码存在许多语法错误 - 请使用JSLint检查错误并修复它们。< / p>
例如:setTimeout("redirect_index2()", 600);
和setTimeout("redirect_index2()", 700);
无效,$("#fold").toggle("fold", {}, 1000);
也是如此。
让两个不同的函数调用相同的redirect_index2()
函数有什么意义?您应该坚持使用后者,即文档就绪函数中包含的那个。您必须先等待DOM中的所有内容先加载,然后激活animoation和重定向脚本。