php简单提示框alert封装函数

2015-01-24信息快讯网

php自定义函数之简单提示框alert,方便输出提示信息。

 
/*―――――――――――――――――― */ 
//C 简单提示框函数 
/*―――――――――――――――――― */ 
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>'; 
} 
©2014-2024 dbsqp.com