|
-------------controllers
if ($this->form_validation->run() == FALSE) {
echo 'call msg_box'; //正常显示
echo "<script LANGUAGE='javascript'>function msg_box('my box ', 'test my text', 0, 'url');</script>" ; //没显示???
}
-------------views
<script language="JavaScript">
function msg_box(title, text, times, url)
{
alert(title);
...
}
</script>
forms
submite |
|