有没有办法使用js通知与set_flashdata codeigniter?

时间:2015-12-04 07:26:25

标签: javascript php codeigniter

  

使用Codeigniter 3

我是初学者。

我已经尝试越来越多地使用 Notification Styles Inspiration$this->session->set_flashdata('', ''),但我失败了。当我放置flash数据$this->session->flashdata('messagename')

时,我不知道如何在js中调用show notification方法

1 个答案:

答案 0 :(得分:0)

使用这个简单的烤面包机,而不是使用外部烤面包机。

Html代码

<div class="toast toast-default">
    <button class="toast-dismiss"><i class="fa fa-times"></i></button>
        Oops!!! Something went wrong while adding this product. Please try again after sometime.
</div>

的CSS

.toast-default {
    background: rgba(53, 164, 178, 0.8) none repeat scroll 0 0;
    color: #fff;
}
.toast {
    border-radius: 5px;
    display: none; <--- if flashdata is set make it block.
    padding: 20px 10px 10px;
    position: fixed;
    right: 20px;
    top: 100px;
    width: 250px;
    z-index: 1000;
}

默认情况下,tost显示为none。

如果设置了flashdata,请将其设为显示块。