时间:2021-07-01 10:21:17 帮助过:20人阅读
$.ajax({
type: "POST",
url: "index.php",
data: "location=img_png_src",
success: function(msg){
alert( "Data Saved: " + msg );
}
});
if($_SERVER['REQUEST_METHOD'] == "POST") {
print_r($_POST);
exit();
}
?>