在头部添加收藏并计数的Ajax表单。
代码示例:
HTML:
添加收藏
0
JS:
$('#add-to-favorites').click(function(e) {
e.preventDefault();
$.ajax({
url: '/favorites/add', // 收藏接口路径
type: 'POST',
data: { id: 1 }, // 收藏的内容id
success: function(response) {
var count = $('#favorites-count');
var numFavorites = parseInt(count.text()) + 1;
count.text(numFavorites);
},
error: function(xhr, status, error) {
console.error(error);
}
});
});
上一篇:Addingthreereferencelinestoaggplot2boxplotworks,butwhycan'tIaddtworeferencelines?”改写为中文。
下一篇:AddingtotheRearofadoublylinkedCircularBufferofInteger(java)(在Java中向双向链接循环缓冲区的末尾添加整数)