jQuery重定向一段时间后

时间:2013-11-07 15:29:35

标签: jquery redirect settimeout

我尝试使用此脚本writete重定向到index.php

<script> 
jQuery(document).ready(function () {
    jQuery("#product").click(function () {
        jQuery(this).hide(1000);
        jQuery("#products_s").hide(10);
        setTimeout("location.href='index.php", 1000);
    });
});
</script>

我创建的小脚本有效,但是在点击div中的链接后我无法重定向到索引,我认为重定向好,我认为它写得好但是确定这里的人可以帮助我看看

失败

只有y关闭div但没有重定向

谢谢,问候

2 个答案:

答案 0 :(得分:1)

您错过了setTimeout中的结束语。我会将其更改为类似的内容,以避免出现错误并更容易看到语法错误:

setTimeout(function() {
    location.href = 'index.php';
},1000); 

答案 1 :(得分:1)

Typo不匹配的引号

setTimeout("location.href='index.php'",1000);   
                                    ^ add single quote here