我正在使用codeignitor框架,我很新,所以請幫我解決我的問題。阿賈克斯在codeigniter中獲得價值
下面是視圖:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Welcome to CodeIgniter</title>
<script type="text/javascript" src="<?php echo base_url().'plugins/jQuery/jQuery-2.2.0.min.js'?>"></script>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
type:'GET',
url:'<?php echo site_url('ajax/hello/');?>',
success:function(result){
$('#value').html(result);
}
});
});
</script>
</head>
<body>
<div id="container">
<p id="value"></p>
</div>
</body>
</html>
下面是控制器:
<?php
class Ajax extends CI_Controller{
public function index()
{
$this->load->view('index');
}
public function hello(){
return 'hello';
}
}
?>
我使用AJAX從控制器獲得價值,任何人都可以請幫我該怎麼辦
不工作@裏格斯愚蠢 – Sagar