codeigniter - jquery弹出错误消息

时间:2010-12-23 14:41:43

标签: jquery codeigniter message

您好我想显示一个带有一些错误消息的jquery弹出窗口,但我不知道如何使用codeigniter解决它,

如果用户名或密码错误,我在我的函数中有这个

$ this-> session-> set_flashdata('flash_loginFejl','Brugernavn eller password er forkert'); $ data ['content'] ='popup_view'; $ this-> load-> view('includes / template',$ data);

把它显示出来:

http://d.pr/w2zT

我做错了什么?

1 个答案:

答案 0 :(得分:0)

我的头文件中包含了我在所有页面中的内容:

<link rel="stylesheet" href="<?php echo base_url(); ?>css/black-tie/jquery-ui-1.8.7.custom.css" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="<?php echo base_url(); ?>js/jquery-ui-1.8.7.custom.min.js" type="text/javascript"></script>

我的模板文件:

<?php $this->load->view('includes/header') ?>

<?php $this->load->view($content) ?>

<?php $this->load->view('includes/footer') ?>