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