私はcodeignitorフレームワークを使用しています。私はとても新しく、問題を解決してください。codeigniterで値を取得するAjax
以下図である。
以下<?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';
}
}
?>
誰が
@Riggs Folly – Sagar