织梦程序提示信息提示框美化教程

时间:2023-08-09 11:59 浏览:0 评论:0
0

织梦程序默认提示框很丑发现美,今天我们提供一个修改教程,把提示框美化下。

织梦提示信息提示框美化

实现教程

打开 /include/common.func.php 找到 大概在278行的

function ShowMsg( { 中间代码省略... }

把整个函数改成

function ShowMsg($msg, $gourl, $onlymsg=0, $limittime=0) { if(empty($GLOBALS['cfg_plus_dir'])) $GLOBALS['cfg_plus_dir'] = '..'; $htmlhead = " 提示信息 "; $htmlhead .= " ".(isset($GLOBALS['ucsynlogin']) ? $GLOBALS['ucsynlogin'] : '')."
"; $litime = ($limittime==0 ? 1000 : $limittime); $func = ''; if($gourl=='-1') { if($limittime==0) $litime = 5000; $gourl = "javascript:history.go(-1);"; } if($gourl=='' || $onlymsg==1) { $msg = ""; } else { //当网址为:close::objname 时, 关闭父框架的id=objname元素 if(preg_match('/close::/',$gourl)) { $tgobj = trim(preg_replace('/close::/', '', $gourl)); $gourl = 'javascript:;'; $func .= "window.parent.document.getElementById('{$tgobj}').style.display='none'; "; } $func .= " var pgo=0; function JumpUrl(){ if(pgo==0){ location='$gourl'; pgo=1; } } "; $rmsg = $func; $rmsg .= "document.write(""); ;"; $rmsg .= "document.write("
"; $rmsg .= "

提示信息

"); "; $rmsg .= "document.write("
"); "; $rmsg .= "document.write("".str_replace(""","“",$msg).""); "; $rmsg .= "document.write(""; if($onlymsg==0) { if( $gourl != 'javascript:;' && $gourl != '') { $rmsg .= "点击跳转"; $rmsg .= "
"); "; $rmsg .= "setTimeout('JumpUrl()',$litime);"; } else { $rmsg .= "
"); "; } } else { $rmsg .= "

"); "; } $msg = $htmlhead.$rmsg.$htmlfoot; } echo $msg; }

 

1. 本站所有资源来源于用户上传或网络,仅作为参考研究使用,如有侵权请邮件联系站长!
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. dedecms > 织梦程序提示信息提示框美化教程

用户评论