|
每当引入jquer后就出错,不知什么原因
我是这样引入的,大家看看有什么错误。
在<head>中加入
1 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
2 <script language="JavaScript" type="text/javascript" src="js/jquery.js"></script>
会出错。
然后
在config中加入
$config['javascript_location'] = 'js/jquery.js';
在控制器中
$this->load->library('javascript');
$this->javascript->compile();
在视图
<head>
<?php echo $library_src;?>
<?php echo $script_head;?>
</head>
这样还是无法显示内容 。这是为什么呀
|
|