<html>
<head>
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('#items').load('<?php echo base_url('home/test'); ?>');
//alert();
});
</script>
</head>
<body>
<div id="header" style="height:11%;width:100%;background-color:#1F242A;">
<div id="img" style="float:left;">
<img src="/e-com/images/logo.jpg" style="margin-left:130%;" />
</div>
</div>
<div id="left" style="background-color:grey;height:100%;width:13%;float:left;">
</div>
<div id="right" style="background-color:grey;height:100%;width:13%;float:right;">
</div>
<div id="content" style="height:100%;width:70%;float:left;">
<div id="table" style="float:center;">
<table border="0" width="44" style="margin-left:45%;">
<tr>
<td><h1><a href="home">Home</a></h1></td>
<td><h1><a href="home">Home</a></h1></td>
<td><h1><a href="home">Home</a></h1></td>
</tr>
</table>
</div>
<div id="items">here</div>
</div>
</body>
</html>
</script>
まず、home_view にある上記のスクリプトは、test.php からいくつかの単語を表示する必要がありますが、機能していません。Test.php には段落タグといくつかの単語があります。jQuery が機能するようにアラート ボックスを表示できます。
次に、codeigniter を使用してこれを行うにはどうすればよいですか? データを test.php に送信して、home_view.php をロードするにはどうすればよいですか?
public function test()
{
//$data['items'] = $this->product_model->all_items();
$this->load->view('test');
}