landingpage.html
とを作成しましたindex.html
が、ランディングページからホームページを開くにはどうすればよいですか。私が苦しんでいる問題は、私がコードを作成し、それを使用する方法に問題があることです。ページをリダイレクトするための簡単なショートコードはありますか?
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);
});
});