html bağlantı değişken için jquery ajax php dosya gönderme

1 Cevap php

i jquery ajax ile php dosyasına gönderebilirsiniz DPT, bir html bağlantı gömülü bir değişkeni almak için jquery kullanmak istiyorum. ama bu nasıl bilmiyorum.

Bu ben yazdım budur:

    <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;";
    }

tüm farklı "id" ile 20 link ... Diyelim edilecektir. i ajax ile php dosyası bu "id" değerini göndermek istiyorum. Bunu yapmak için nasıl bir fikir?

1 Cevap

Bu deneyin:

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