3

我知道 php 是服务器端的,但是有没有办法让这个窗口在 3 秒后关闭?

<link rel="stylesheet" type="text/css" href="style1.css" />
<?php 
$contact_message=$_POST['message'];
$errpage = $_POST['frompage'];
$ip=$_SERVER['REMOTE_ADDR'];
$message = "$contact_message -SENT FROM THIS IP: $ip";
mail("maxgee@me.com", "$Error Reported on: $errpage", $message);
echo "We have documented the web address of the problem and thank you for helping us    improve our site!"
?>
4

3 回答 3

10

这应该这样做:

<script type="text/javascript">setTimeout("window.close();", 3000);</script>
于 2012-10-09T01:40:38.210 回答
2

很简单——只需在你想从自身移出的地方用echo在PHP中编写JavaScript代码即可,例如:

<?php

    echo '<script> window.setTimeout("window.close()", 1000); </script>';

?>

它肯定会奏效。

于 2017-01-07T11:10:05.030 回答
-1

如果我正在观看的页面突然关闭,这似乎有点奇怪。

于 2012-10-09T02:45:46.040 回答