jQuery返回空数据

时间:2016-12-11 22:21:03

标签: php jquery post

我有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'];

1 个答案:

答案 0 :(得分:-2)

你在php中做了json解码吗?

应该是

$_POST = json_decode(file_get_contents('php://input'), true);

然后你可以使用

$_POST['mark']