简体   繁体   English

AJAX没有将数据传递给php

[英]AJAX not passing data to php

I have been searching online for a while now and have tried many fixes, but I still can't get my code to function properly. 我已经在网上搜索了一段时间,并尝试了许多修复程序,但是我仍然无法使我的代码正常运行。 When a user clicks on a link with the SubCategory class, I want to pass that hyperlink into php through an AJAX call in JavaScript . 当用户单击SubCategory类的链接时,我想通过JavaScript中AJAX调用将该超链接传递到php中。 The click event is being detected correctly and the ajax call returns with a success alert , but when I try to access the variable in php, it says that the $_POST array is empty. 正确检测到click事件,并且ajax调用返回成功alert ,但是当我尝试访问php中的变量时,它说$_POST数组为空。

I don't understand why I can't access the $_POST['send_link'] variable in my php. 我不明白为什么我无法在PHP中访问$_POST['send_link']变量。

Here is part of my index. 这是我的索引的一部分 html : html

<table border="1" width=50%>
        <tr>
            <td><b>For Sale</b></td>
            <td><b>Services</b></td>
            <td><b>Jobs</b></td>
            <td><b>Country</b></td>
            <td><b>Locations</b></td>
        </tr>
        <tr>
            <td><a class = "SubCategory" href="FormData.php">Books</a></td>
            <td>Computer</td>
            <td>Full-Time</td>
            <td>USA</td>
            <td>Cupertino</td>              
        </tr>
        <tr>
            <td><a class = "SubCategory" href="FormData.php">Electronics</a></td>
            <td>Financial</td>
            <td>Part-Time</td>
            <td>India</td>
            <td>Mumbai</td>
        </tr>
        <tr>
            <td><a class = "SubCategory" href="FormData.php">Household</a></td>
            <td>Lessons</td>
            <td>Volunteering</td>
            <td>Sweden</td>
            <td>Stockholm</td>
        </tr>
    </table>

Here is my core. 这是我的核心。 js JS

$( document ).ready(function() {
  $(".SubCategory").click(function(){
    var link =  $(".SubCategory").text();
$.ajax({
  type: 'POST',
  url: 'FormData.php',
  data: { send_link: link },
  async: false,
    success: function(data) { 
        alert("success ");

    },
    error: function (xmlHttpRequest, textStatus, errorThrown) {
         alert("fail");
    }
});
   });
  });

and here is my FormData. 这是我的FormData。 php PHP

<?php
  // Connects to your Database 
  var_dump($_POST);
  if (isset($_POST['send_link'])) {
 var_dump($_POST['send_link']);
  }
  ?>

Request from Chrome : 来自Chrome的请求:

Request URL:
http://localhost/pkanekal/FormData.php

Request Method:GET
Status Code:200 OK
200 OK
Request Headersview source

Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8

Accept-Encoding:gzip,deflate,sdch
Accept-Language:
en-US,en;q=0.8

Connection:keep-alive
Cookie:
PHPSESSID=mj74gqocdse6a59kun1b36ndl5

Host:localhost
Referer:
http://localhost/pkanekal/index.html

User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
Response Headersview source

Connection:Keep-Alive
Content-Length:
1303

Content-Type:text/html
Date:
Wed, 14 Aug 2013 20:31:36 GMT

Keep-Alive:timeout=5, max=99
Server:
Apache/2.4.4 (Unix) PHP/5.5.1 OpenSSL/1.0.1e mod_perl/2.0.8-dev Perl/v5.16.3

X-Powered-By:PHP/5.5.1

Need to change your selector as right now you're trying to select the text in every .SubCategory 现在需要将选择器更改为现在,您正尝试在每个.SubCategory选择文本

var link = $(this).text();

You also need to prevent the default action on the anchor click. 您还需要防止对锚定单击执行默认操作。 (May as well change the href to # since you're referencing it directly in your script. (也可以将href更改为#因为您直接在脚本中引用了它。

$(".SubCategory").click(function(event){
 event.preventDefault();
// your code
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM