Home > Backend Development > PHP Tutorial > php怎么弹出JS对话框?

php怎么弹出JS对话框?

PHPz
Release: 2020-09-04 17:32:22
Original
1939 people have browsed it

在PHP中,可以使用“”语句,通过PHP代码输出JS代码,然后执行JS代码的alert函数来弹出对话框。

php怎么弹出JS对话框?

php怎么弹出JS对话框?

在调试PHP网页的时候,有的时候需要简介的提示来说明后台程序的运行情况,可以使用如下方法,来实现PHP弹出JS对话框的效果:

<?php echo &#39;<script type="text/javascript">window.alert("输出文本..");</script>&#39; ?>
Copy after login

其实,就是通过PHP代码输出JS代码,执行JS代码的alert函数,实现弹出对话框。

在调试的时候,遇到一个问题,值得注意:

以上代码必须要在有PHP的环境中执行,我一开始想当然地在自己的PC上写个html文件,然后用浏览器测试,怎么都不行。。。后来吃午饭时,才猛然反应过来,没有PHP执行环境。于是将文件上传网站再测试,成功!

更多相关知识,请访问 PHP中文网!!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template