index.php: 读取数据库
点赞
server.php 写入数据库
index.js 请求数据
$(document).ready(function(){
$("#btn").on("click",function(){
$.get("sever.php",{name:$("#btn").val()},function(data){
$("#result").text(data);
});
});
});