php-info-box
#用php函数封装的信息提示框和操作确认框
我们在提交表单或操作按钮时经常用到信息提示框,我们需要在web脚本编写js和html标签,有时是用js插件功能弹框
其实用php也可以做哦!在后台逻辑判断中用起来效果也不错的,省去了写js的麻烦,小伙伴们快用起来吧
😊
用法简要说明:
show_error($error_msg);
show_msg($msg);
show_confirm($msg);
以上函数都只要传入需要显示的信息参数即可,调用即弹出信息提示框
其中提示信息框 3 秒后会自动关闭,也可点击框右上角的 X 可关闭提示框
确认提示框,点击确认或关闭按钮提示框关闭,并且会生成confirm_result变量,变量值为布尔值,点击确认为true, 点击关闭为false
获取 confirm_result变量 用javascript代码 window.confirm_result即可
效果如下:
以下是我用php函数封装的几个功能的具体内容:
/**
* 错误信息提示框
* @param string $msg 错误提示信息
* @return html
*/
function show_error($error)
{
$showEvent = “”;
$html = ‘
X
‘.(string)$error.’
‘;
echo $html;
exit();
}
/**
* 信息提示框
* @param string $msg 提示信息
* @return html
*/
function show_msg($msg)
{
$showEvent = “”;
$html = ‘
X
‘.(string)$msg.’
‘;
echo $html . $showEvent;
exit();
}
/**
* 确认提示框
* @param string $msg 提示信息
* @return html
*/
function show_confirm($msg)
{
$confirmEvent = “”;
$html = ‘
‘;
echo $html . $confirmEvent;
exit();
}