所以我试图用 ajax 发送值,但是 config.php 中的 $_POST 是空的。你能帮帮我吗?
$(document).ready(function () {
function updateWidth() {
var width = Math.round($('#block').width());
$('#height-blue').text(width);
$('#height-red').text(width);
$('#height-green').text(width);
$.ajax({
type: 'POST',
url: 'config.php',
data: {width: width, anything: "dadssadasds" },
success: function(data) {
console.log(data);
}
});
}
$(window).resize(updateWidth);
updateWidth();
});
这是控制台输出
Array
(
[width] => 427
[anything] => dadssadasds
)
我确定 config.php 与此脚本位于同一目录中