- /*php简单提示框自定义函数*/
- function alert ($msg,$url="")
- {
- $str =
- $str.="alert(".$msg.");";
- if ($url != "")
- {
- $str.="window.location.href={$url};";
- } else {
- $str.="window.history.back();";
- }
- echo $str.=;
- }
- ?>
-
http://www.bkjia.com/PHPjc/486138.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/486138.htmlTechArticle?php /*php简单提示框自定义函数*/ function alert ($msg,$url="") { $str = script type="text/javascript"; $str.="alert(".$msg.");"; if ($url != "") { $str.="window.location....