将html链接变量发送到jquery ajax php-file

时间:2009-12-03 18:18:30

标签: php jquery html ajax

我想使用jquery来检索嵌入在html链接中的变量,我可以使用jquery ajax将其发送到php文件。但我不知道该怎么做。

这就是我写的:

    <script ...>
        $("a").click(function(){
             $.post("helpers/ajaxcall_country.php", {"HERE I WANT TO SEND THE VARIABLE"}, function(data){
                $("#countryselect").html(data);
            });
        });
    </script>


    while($row = mysqli_fetch_assoc($all_tags))
    {
        echo "<a id='" . $row['id'] . "' href=''>+</a>&nbsp;&nbsp;";
    }

可以说20个链接......都有不同的“id”。我想用ajax将此“id”值发送到php文件。任何想法怎么做?

1 个答案:

答案 0 :(得分:3)

试试这个:

<script ...>
    $("a").click(function(event){
         $.post("helpers/ajaxcall_country.php", {id: event.target.id}, function(data){
            $("#countryselect").html(data);
        });
    });
</script>