使用php发布数据属性

时间:2012-07-05 18:21:56

标签: php jquery ajax custom-data-attribute

我在发布数据的价值方面遇到了麻烦,例如: data-fruit =“orange”我基本上想用jQuery ajax做它,我想它会看起来像这样

var fruit = $(".fruit img").attr("data-skin");

$('.box').click(function() {
  $.ajax({
    url: 'fruits.php',
    type: 'post',
    data: fruit
  });
});

php $ _POST应该是这样的:

$friutType = $_POST['data-friut']

干杯

1 个答案:

答案 0 :(得分:4)

您需要将键/值对发送到data,而不仅仅是值。

$.ajax({
    url: 'fruits.php',
    type: 'post',
    data: {fruit: fruit}
});

然后在PHP中:

$friutType = $_POST['fruit']