将参数与js / ajax一起传递给php文档

时间:2012-02-15 12:19:05

标签: php javascript jquery ajax

$(document).ready(function()
{
$(":input").focusout(function () {

    var a= $(this).closest("tr").attr('id');
    var b= $(this).closest("td").attr('id');
    var data = $(this).attr("value");

   $.post("database.php",
   {trAdress: a, tdAdress: b }, function(data){ alert("Data Loaded: " + data); }); });}); 

我想将trAdress和tdAdress也将数据参数传递给php文档......任何人都可以帮助我如何在php文档中获取这些参数_?

3 个答案:

答案 0 :(得分:1)

它们将在$_POST数组中设置为$_POST['trAdress']$_POST['tdAdress']

答案 1 :(得分:0)

如果您使用POST发送它们,则可以使用$_POST超全局变量访问表单中发送的值:

<?php
$trAddress = $_POST['trAddress'];
$tdAddress = $_POST['tdAddress'];

// your code here

http://php.net/manual/en/reserved.variables.post.php

答案 2 :(得分:0)

$_POST["trAdress"]$_POST["tdAdress"]会为您提供值