ボタンと div があり、各部分に同じ ID のボタンがあります。ボタンの ID を取得し、それを使用して div html を更新します。* セクションはどのように記述すればよいですか?
$(function() {
$(".button").click(function(){
var id=$(this).attr('id');
var dataString = 'id='+ id ;
$.ajax({
type: "POST",
url: "download_number.php",
data: dataString,
cache: false,
success: function(html)
{
*********I HAVE PROBLEM HERE**************
$('how to get the id of the div from var id of button above?').html(html);
}
});
});
});
区分:
Downloaded:<div id="<?php echo $id; ?>" ><?php echo $downloadcount;?></div>
ボタン:
<input type = "button" value="Download" class="button" id="<?php echo $id; ?>" name="dl">
クラスを取得すると、div全体が更新されますボタンに関連付けられたdivのみを更新したい