ajax+php+mysql实现无刷新点赞功能

index.php:  读取数据库




	
	点赞
	
	


	
	
		
	

server.php    写入数据库
index.js   请求数据

$(document).ready(function(){
	$("#btn").on("click",function(){
		$.get("sever.php",{name:$("#btn").val()},function(data){
			$("#result").text(data);
		});
	});
});


你可能感兴趣的:(ajax+php+mysql)