我有 1 个 php 文件名 index.php。在该文件中,我想将一个变量从 ajax 传递给 php。
var elem = document.getElementById("mydiv").value;
(function($)
{
$(document).ready(function()
{
$.ajax(
{
type:"POST",
url: window.location.href,
data: 'action='+elem,
beforeSend: function() {
$('#cctv').hide();
},
complete: function() {
$('#cctv').show();
},
success: function() {
$('#cctv').show();
}
});
var $container = $("body");
$container.load('findAllPath.php',{'function': 'findAllPath'});
var refreshId = setInterval(function()
{
$container.load('findAllPath.php',{'function': 'findAllPath'});
}, 10000);
});
})(jQuery);
和我的 php
if (isset ($_POST['action']))
{
echo $_POST['action'];
}
在萤火虫中,我可以看到 ajax 已经发布了 'action=value' 但在 php 中,$_POST['action'] 是空的。任何人都可以帮助我,我的代码有什么问题?谢谢你