我是 codeigniter 的新手,无法让我的 ajax 工作。
我正在尝试使链接在单击时将内容加载到主文档中。
我寻找说明,但无法弄清楚。除 ajax 外的所有工作都返回alert('ERROR')
消息。没有加载任何东西<div id='load_here'></div>
也许我在 config.php 中遗漏了一些东西?我是否必须加载一些库才能使其工作?任何想法都会有所帮助//主文档链接
<span id='reg_link_rules'>Link</span>
<div id='load_here'></div>
// 控制器
class Register extends CI_Controller {
public function hello()
{
echo 'hello';
}
}
// jQuery
$(document).ready(function() {
$('#reg_link_rules').click(function(eve){
$.ajax({
type: "GET",
url: "register/hello",
complete: function(data){
$('#load_here').html(data);
},
error: function(){alert('error');}
});
});
});
我认为问题在于 ajax url 没有访问控制器。Z:/home/codeigniter/www/register/test 这是我认为需要的地方
问题解决了,url需要是http://codeigniter/index.php/register/hello