PHP 弹出窗口的实现
使用 JavaScript Alert 函数
echo "<script>alert('弹出窗口的内容');</script>";使用 HTML DOM Window.alert 方法
echo "<script>window.alert('弹出窗口的内容');</script>";使用 PHP header 函数
header("Location: popup.html");自定义弹出窗口
echo "<script type="text/javascript"> function popup() { var width = 400; var height = 400; var left = (screen.width - width) / 2; var top = (screen.height - height) / 2; var windowFeatures = 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top; var newWindow = window.open('popup.html', '', windowFeatures); newWindow.focus(); } </script>"; echo "<button onclick="popup()">打开自定义弹出窗口</button>";以上就是php代码弹窗口怎么弄的详细内容,更多请关注知识资源分享宝库其它相关文章!
版权声明
本站内容来源于互联网搬运,
仅限用于小范围内传播学习,请在下载后24小时内删除,
如果有侵权内容、不妥之处,请第一时间联系我们删除。敬请谅解!
E-mail:dpw1001@163.com
发表评论