我需要使用 ajax 和 php 和 jquery 接收投票状态。以下是我的代码:
var VoteStatus= GetStatus() ;
var ID = $('#ID').val();
function GetStatus() {
var res = '';
$.ajax({
type: "POST",
data: {VoteID:ID} ,
url: "/vote_status.php",
async: false,
success: function(result) { res=result; }
});
return res;
}
alert('Vote Status= ' + VoteStatus);
在我的 php 文件中:
$VoteID = $_POST['VoteID'];
$Property = $_POST['Property'];
if ( $VoteID == 0 )
echo 'No Vote provided - Property = '. $Property;
exit;
警报框显示:投票状态 = 未提供投票
请帮忙。
我已经发布了 VoteID,但 php 文件似乎没有收到它。