/* * 功能:在页面上通过JS提示指定消息,并结束页面执行 * 参数: * Msg :待显示的消息 * URL :需指定返回的页面,不指定时返回前一页 */ function ShowMsg($Msg, $URL = "") { //header('Content-Type: text/html; charset=utf-8'); //echo ''; echo "";</li> <li> if (strlen($Msg) > 1)</li> <li> echo "alert("$Msg");";</li> <li> if ($URL == "")</li> <li> echo "history.go(-1);";</li> <li> else</li> <li> echo "document.location.href=$URL;";</li> <li> echo ""; exit(); } 复制代码