博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Yii的操作提示框
阅读量:5272 次
发布时间:2019-06-14

本文共 373 字,大约阅读时间需要 1 分钟。

效果如图

HTML + CSS

<style>

div.error

{
background: #FFE0E0;
border: 2px solid #FFA0A0;
padding: 10px;
margin: 10px 0;
}

</style>

 

<?php if(Yii::app()->user->hasFlash('error')) { ?>

<div class="error"><?php echo Yii::app()->user->getFlash('error'); ?></div>
<?php } ?>

 

控制器代码

Yii::app()->user->setFlash('error','修改失败,请正确填写所有信息');

转载于:https://www.cnblogs.com/lz0925/p/7865137.html

你可能感兴趣的文章
《弟子规》下的沉思
查看>>
B. Beautiful Paintings
查看>>
AtCoder Beginner Contest 103
查看>>
Codeforces 589F Gourmet and Banquet
查看>>
随机字符串。
查看>>
Create参数为:nil/self/application的区别
查看>>
网络流24题 飞行员配对方案问题
查看>>
STM32空闲中断
查看>>
Python 直接赋值、浅拷贝和深度拷贝解析
查看>>
剑指offer python版 调整数组顺序使奇数位于偶数前面
查看>>
内容提供者编写步骤
查看>>
汇编指令
查看>>
Leader of All Crushing Machines in the Future
查看>>
luogu 4211
查看>>
Sql Server 默认值
查看>>
JavaEE之反射
查看>>
【转】经验分享:大型高并发高负载网站的系统架构
查看>>
HDU 6060 RXD and dividing (求贡献)
查看>>
java中 immutable,future,nio
查看>>
VMware ESX常用命令
查看>>