码迷,mamicode.com
首页 > 其他好文 > 详细

程序跳转时候的提示框定义

时间:2015-01-14 06:15:12      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

如图:技术分享

 

html  +  css   代码:

这是 YII  模板的写法

 1 欢迎使用Yii
 2 <style>
 3 
 4 div.success{
 5     background: #C5FBBD;
 6     border: 1px solid #76C376;
 7     padding: 10px;
 8     margin: 10px 0;
 9 }
10 
11 div.error
12 {
13     background: #FFE0E1;
14     border: 1px solid #FFA0A2;
15     padding: 10px;
16     margin: 10px 0;
17 }
18 
19 </style>
20 
21 <?php if(Yii::app()->user->hasFlash(‘success‘)) { ?>
22 <div class="success"><?php echo Yii::app()->user->getFlash(‘success‘); ?></div>
23 <?php } ?>
24 
25 
26 <?php if(Yii::app()->user->hasFlash(‘error‘)) { ?>
27 <div class="error"><?php echo Yii::app()->user->getFlash(‘error‘); ?></div>
28 <?php } ?>

很小的一个功能点,我也贴出来了

程序跳转时候的提示框定义

标签:

原文地址:http://www.cnblogs.com/dwight/p/yii_tips.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!