2013-04-29 42 views
0

我在CodeIgnitor中使用下面的代碼。如何在代碼點火器中以綠色顯示閃光消息?

$data["flash_Message"] = "Update successfull." 

我想以綠色顯示flash_Message。我怎樣才能做到這一點?

+0

更多關於jQuery UI的這事做HTML和CSS不與CodeIgniter。您可以將消息包含在html元素和樣式中。例如

然後將樣式應用於.styled in css – Nish 2013-04-29 12:38:44

回答

3

你可以在你看來這樣做:

if(isset($flash_Message)) 
{ 
    echo "<div style='color:green;'>$flash_Message<div>"; 
} 

就個人而言,我用笨的flashdatasession庫中顯示這樣的成功/失敗狀態......

$this->session->set_flashdata('message',"<div style='color:green;'>Update successfull.<div>"); 

考慮,你可按以下方式顯示您的flashdata

echo $this->session->flashdata('message'); 
+0

謝謝。它似乎在工作 – HasanCseBuet 2013-04-29 10:55:13

+0

@HananCseBuet:不客氣.... – 2013-04-29 11:00:38

0

在您的視圖文件

if(isset($flash_Message)){ 
    <div><strong>Hey!</strong> <?php echo $flash_Message ?> </div> 
} 

或者,如果你正在使用jQuery UI 使用此代碼:

if(isset($flash_Message)){ 
    <div class='ui-widget'> 
    <div class='ui-state-highlight ui-corner-all' style='margin-top:20px; padding:0 .7em;'> 
    <p><span class='ui-icon ui-icon-info' style='float: left; margin-right: .3em;'></span> 
    <strong>Hey!</strong> <?php echo $flash_Message ?> </p> 
    </div> 
    </div> 
    } 

閱讀從這裏http://jqueryui.com/