我有jQuery函数将数据发送到另一个PHP文件。
$(function() {
$(".button").click(function() {
var ButtonValue = $(this).attr('value');
$.ajax({
url: 'content_articles.php',
type: 'POST',
data: {
mark: ButtonValue
}
});
});
});
ButtonValue
变量是对的。但是下一页它是空的。
$rowid=$_POST['mark'];
答案 0 :(得分:-2)
你在php中做了json解码吗?
应该是
$_POST = json_decode(file_get_contents('php://input'), true);
然后你可以使用
$_POST['mark']