php简单提示框alert封装函数
更新时间:2010年08月08日 17:47:44 作者:
php自定义函数之简单提示框alert,方便输出提示信息。
复制代码 代码如下:
/*—————————————————— */
//– 简单提示框函数
/*—————————————————— */
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>';
}
相关文章
解析php addslashes()与addclashes()函数的区别和比较
本篇文章是对php中的addslashes()与addclashes()函数的区别进行了详细的分析介绍,需要的朋友参考下2013-06-06
最新评论