0

HTML

<a href="#modal" id="a1" class="leftPanel">Link1</a>
<a href="#modal" id="a3" class="leftPanel">Link1</a>
<a href="#modal" id="a4" class="leftPanel">Link1</a>

jQuery

function mainFunction() {

    $(".leftPanel").click(function () {
        $(".leftPanel").pageslide({
            direction: "right",
            modal: true
        });
        var linkId = $(this).attr('id');
        var linkId2 = (linkId.substring(1, linkId.length));
        console.log(linkId);
        console.log(linkId2);
        $.ajax({
            type: 'GET',
            url: 'my.php',
            data: linkId2,
            success: function (data) {
                console.log(data);
            }
        });
        return false;
    });
}

还有我的 PHP

<?php
   $pageid = $_GET['linkId2'];
   print_r($_GET);
?>

所以这是我的代码,但它似乎不起作用..环顾四周,发现任何可以提供帮助的东西。解释脚本我要取一个链接的ID,并赋值给$pageid console.log(data); 说拒绝访问 print_r($_GET); 说数组();如果有任何代码建议。如果需要更多详细信息,请询问我会尽我所能解释一切。将不胜感激任何帮助。十分感谢。

4

1 回答 1

6

您的jquery.ajax函数中有错误。您错过了传递数据的标识符。用这个:

data: {"linkId2" : linkId2},
于 2013-05-01T19:28:39.840 回答