我想使用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> ";
}
可以说20个链接......都有不同的“id”。我想用ajax将此“id”值发送到php文件。任何想法怎么做?
答案 0 :(得分:3)
试试这个:
<script ...>
$("a").click(function(event){
$.post("helpers/ajaxcall_country.php", {id: event.target.id}, function(data){
$("#countryselect").html(data);
});
});
</script>