php简单提示框alert封装函数

  作者:bea

代码如下: /*—————————————————— */ //– 简单提示框函数 /*—————————————————— */ function alert ($msg,$url=") { $str = '<script type="text/javascript">'; $str.="alert('".$msg."');"; if ($url != ") { $str.="window.location.href='{$url}';

代码如下:


/*—————————————————— */
//– 简单提示框函数
/*—————————————————— */
function alert ($msg,$url=")
{
$str = '<script type="text/javascript">';
$str.="alert('".$msg."');";

if ($url != ")
{
$str.="window.location.href='{$url}';";
}
else
{
$str.="window.history.back();";
}
echo $str.='</script>';
}




有用  |  无用

猜你喜欢