2011-12-03 35 views

回答

2

JS方法$ .ee_notice

$.ee_notice("Your success message", {type: "success", open: true}); 

OR

$.ee_notice("Your error message", {type: "error", open: true}); 

如果你以後表單後做一個重定向,你可以在重定向之前使用set_flashdata:

$this->EE->session->set_flashdata('message_success', 'Your success message'); 
$this->EE->functions->redirect($url); 

OR

$this->EE->session->set_flashdata('message_failure', 'Your error message'); 
$this->EE->functions->redirect($url); 
+0

這解決了這個問題。我正在做'set_flashdata'調用,但沒有重定向。它現在起作用了,我在那裏插入了'redirect'調用。謝謝! –

相關問題