Home>Article>Backend Development> Can php generate pop-up windows?
Can php generate pop-up windows?
The method of popping up a dialog box in php is as follows. Generally, after submitting the information, a dialog box prompt needs to pop up, and then the dialog box can be automatically closed. The pop-up dialog box has the following concentrated methods. In fact, they all use javascript. alert() method in . Closing the current page after the prompt ends can also be achieved using javascript's Window.self.close().
Exact statements such as: echo " 3f1c4e4b6b16bbbd69b2ee476dc4f83a window.self.close(); 2cacc6d41bbb37262a98f745aa00fbf0 ";
echo "";
More usage:
1. php pops up a dialog box
//弹出对话框 alert(\"你好\");"; ?> //关闭当前页 echo " "; 或者 alert(\"你好\");"; ?>
2. If you need php to pop up a dialog box and return to the original page, you can write
\r\n"; echo " alert(\"你好\");\r\n"; echo " history.back();\r\n"; echo ""; exit; ?>
or
\r\n"; print " alert(\"你好\");\r\n"; print " history.back();\r\n"; print ""; exit; ?>
3. If you need PHP to pop up a dialog box and replace the original page with a new page (replace the current history record), the original page can be written like this
\r\n"; echo " alert(\"你好\");\r\n"; echo " location.replace(\"http://www.asm32.net/\");\r\n"; // 自己修改网址 echo ""; exit; ?>
or
\r\n"; print " alert(\"你好\");\r\n"; print " location.replace(\"//m.sbmmt.com/\");\r\n"; // 自己修改网址 print ""; exit; ?>
For more PHP related knowledge, please visitPHP Chinese website!
The above is the detailed content of Can php generate pop-up windows?. For more information, please follow other related articles on the PHP Chinese website!