当前位置:Gxlcms > PHP教程 > 用PHP实现弹出消息提示框的两种方法

用PHP实现弹出消息提示框的两种方法

时间:2021-07-01 10:21:17 帮助过:9人阅读

方法一:
代码如下:
echo "<script>alert('提示内容')</script>";

方法二:
代码如下:
echo '<script language="JavaScript">;alert("这是";location.href="index.htm";</script>;';

里面的location.href="index.htm"表示你点击消息框的确定按钮后将要转向的页面。如果不用去掉就可!

人气教程排行