gpt4 book ai didi

php - 如何在php和js中结合使用alert

转载 作者:行者123 更新时间:2023-12-02 20:37:09 25 4
gpt4 key购买 nike

需要通过php进行提醒,
我有下面的代码。问题是,只要我不使用 header 重定向,它就可以工作。但一旦我使用它..我就失去了警惕。

echo "I will do some functions here in php";  
if($value == 1){
alert('ok working');
}
header(location: 'someOtherpagethanthis.php');

最佳答案

重定向指示浏览器立即触发一个全新的请求。带有警报的响应正文将被忽略。您可能想使用 JS 在警报后触发新请求。

if ($value == 1) {  
alert('ok working');
window.location = 'someOtherpagethanthis.php';
}

关于php - 如何在php和js中结合使用alert,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3057984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com