<a href="#"><img src="images/jbl.png" id="idhims"/></a>
<a href="#"><img src="images/swastik.png" id="idhims2" name="img2name"/></a>
当点击上述任何一张图片时,我想通过使用点击的图片的 id从mysql
另一个数据库中检索数据。div
我想使用SELECT
-Query 中单击图像的 id 从 mysql 数据库中检索数据。
使用 jQuery
包括这个
<script src="http://code.jquery.com/jquery-latest.js"></script>
和
$(document).ready(function(){
$('a').click(function(){
var imgId = $(this).children('img').attr('id');// store the id to varialbe imgId
//alert(imgId);
$.ajax({
type: "POST",
url: "process_form.php",
data: {imageid:imgId},
dataType: "json",
success: function(data) {
//var obj = jQuery.parseJSON(data); if the dataType is not specified as json uncomment this
$("#message_ajax").html(data.frmdb);// message_ajax is the id of the container to show the returned value
}
});
});
})
您可以访问 php 页面中的值$_POST['imageid']
示例 php 页面,它将返回单击的图像的值给我们的用户
$return_arr = array();
$return_arr['frmdb'] = $_POST['imageid'];
echo json_encode($return_arr);
添加函数onclick="yourFunction(this.id)",例如:
<script>
function yourFunction(id) {
alert(id);
}
</script>
对于您的查询,我让 jsfiddle 如下所示
HTML
<img src="http://google.com/img" id="id"/>
<img src="http://google.com/img" id="id1"/>
<img src="http://google.com/img" id="id2"/>
JS
$("img").click(function() {
alert(this.id);
});
将操作放入控制器以从数据库中检索数据。就像是
public function actionQuery($id)
{
$result=(your query using $id);
echo CJSON::encode(array('data'=>$result));
}
在页面上使用 jQuery
<a href="#"><img src="1" id="idhims" onclick="query(this)"/></a>
<script type="text/javascript">
function query(obj) {
$.get("your_controller/query", { id: $(obj).attr('id') })
.done(function(data) {
use the data to fill your div;
});
}
</script>