我有按钮和 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