$(function(){
	$(".delete").click(function(){
		if(confirm("确定删除么?")){
			return true;
		}else{
			return false;
		}
	});
});