我是新來的PHP,並試圖弄清楚,如何關閉一個打開的網頁,同時保持其他網頁打開。例如,我想打開yahoo.com網頁,如下面的代碼所示。然後我想關閉這個yahoo.com頁面並打開google.com頁面。如何使用PHP關閉特定的網頁?
<?php
//To open yahoo.com page
echo '<script type="text/javascript" language="javascript">
window.open("http://www.yahoo.com/");
</script>';
//How can I close the yahoo.com page and let the program keep running
echo "<script>window.close();</script>";
sleep(10);
//To open google.com page
echo '<script type="text/javascript" language="javascript">
window.open("http://www.google.com/");
</script>';
echo "Done";
?>
你需要學習的服務器端和客戶端之間的區別。 –
這真的是一個JavaScript問題。你所有的php在這裏都在生成js。 –