如何在javascript中调用PHP标头刷新?

时间:2017-09-02 13:43:25

标签: javascript php page-refresh

我有一个PHP脚本,它不会在JavaScript中使用此代码更新页面。

window.onpageshow = function(event) {
    if (event.persisted) {
        window.location.reload()    
    }
};

534 different ways使用JavaScript重新加载页面时会出现同样的问题。

使用example.php

<?php
header("Refresh:0");
?>

是否有任何想法让window.location.reload()调用example.php文件?

2 个答案:

答案 0 :(得分:1)

您可以使用此代码模拟 HTTP重定向

window.location.replace("exemple.php");

或者这可以模拟链接

中的点击
window.location.href = "exemple.php";

答案 1 :(得分:0)

试试这个黑客:

window.location.href=window.location.href