<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');
}