0

我尝试用这个脚本重定向到 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 但没有重定向

感谢和问候

4

2 回答 2

1

拼写错误的引号

setTimeout("location.href='index.php'",1000);   
                                    ^ add single quote here
于 2013-11-07T15:34:36.397 回答
1

您的setTimeout. 我会将其更改为这样的内容以避免 eval 并更容易看到语法错误:

setTimeout(function() {
    location.href = 'index.php';
},1000); 
于 2013-11-07T15:31:59.547 回答