echo '<a onclick="load_tags('.$list['id'].')"></a>'
当list[id]
是一个数字,它的工作原理。但是当list[id]
是一个词时,它不起作用。为什么?
以下是有关该功能的一些背景知识以及我在做什么。尽管出于回答这个问题的目的没有必要。
脚本
function load_tags(id){
$.post('../php/tags/get_tags.php',{id:id},function(data){
$('#tags_selected').text(data);
});
}
get_tags.php
$tag_id=$_POST['id'];
echo $tag_id;
$users_with_this_tag=show_all_users_with_this_tag($tag_id);
if(count($users_with_this_tag)!=0){
foreach($users_with_this_tag as $key => $list){
echo $list['user_id'];
}
}else{
echo'Nobody with this tag';
}