jquery中的header('Refresh: 2, blah.php')是什么?


What is the equivalent of header('Refresh: 2, blah.php') in jquery

我想知道是否有一个等效的代码或jquery的任何函数,应该取代header('Refresh: 2, blah.php')在php

我试过window.location.href = "blah.php",但不满足我的需要,…我想,点击链接后,它应该暂停一段时间,然后重定向,。有什么出路吗?谢谢你! !

如果你想重定向到一些有暂停的页面,那么像:

setTimeout(function() {
    window.location.href = 'http://www.somesite.com/somepage.php';
}, 1500);

如果要刷新当前页面,请使用setTimeout():

$('#myLink').click(function(e) {
    e.preventDefault();
    setTimeout(function() {
        window.location.assign('blah.php');
    }, 2000);
});