如何获得点击按钮的ajax响应?
HTML部分:
<button type="button" class="btn btn-success ccomment" rel="popover" data-original-title="Comment" value="12">click</button>
<button type="button" class="btn btn-success ccomment" rel="popover" data-original-title="Comment" value="460">click</button>
和jQuery脚本:
<script type='text/javascript' language='javascript'>
$('.ccomment').click(function(){
var ccomment_val = $(this).val();
$.ajax({
url: '/getcomment/'+ccomment_val,
type:'POST',
dataType: 'json',
success: function(output){
$('.ccomment').popover({
content: output,
html: true,
placement: 'right',
trigger: 'click'
});
}
});
});
</script>
我只想用一个特定的按钮绑定一个有效的 ajax 响应。现在,输出与第一次单击的按钮有关。
谢谢