下面我把我的代码贴出来,和大家分享一下。
控制器:
PHP 代码:
{
//query the picture from model
$query = $this->photomodel->getPic($_POST['picID']);
if($query->num_rows() > 0)
{
$row = $query->row();
$output = "<div class='winBar'><ul><li>_</li><li>x</li></ul></div><div class='winContent'><div id='photo_title'>" . $row->photoName . "</div><div id='photo_item'>" . $row->photoLink . "</div><div id='photo_comment'>" . $row->comment . "</div></div>";
}
else
$output = "no picture was found";
echo($output);
}
视图:
JS 代码:
$("#photoboard").fadeOut("slow");
$(this).css("background-color","#7c2916");
$("#loading_message").show();
//post the pictureID to controller and return the picture and embed it to the photoboard.
$.ajax({
type:"post",
data: "picID=" + $(this).attr("id"),
url:"<?=base_url()?>photogallery/getPhoto",
success: function(result)
{
$("#photoboard").fadeTo("slow", 0.85).fadeIn("normal").html(result);
$("#loading_message").hide();
},
error: function()
{
$("#loading_message").hide();
alert("ajax error");
}
});
});
这是我写的 photo gallery 的部分代码。目的是在 php 页面中通过点击网页中图片的缩略图,来打开对应的图片进行浏览。
Code 很简单,我也不多解释了。大家需要注意的只是在用 jq post 或者 get 的时候, url 路径一定要用 base_url() 或者 site_url()。
在今后的日子里,如果我对 ci+jq 这一组合有了什么新的体会,我也会在这里和大家分享的。