如何在php和js组合中使用alert

时间:2010-06-16 23:47:08

标签: php javascript

需要通过php提醒,
我有下面的代码。问题是它只要我不使用标题重定向就可以工作。但是一旦我使用它,我就会松散警觉。

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

1 个答案:

答案 0 :(得分:2)

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

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