echo <a onclick="load_tags( .$list[ id ]. )"></a>
当 list[id]
是数字时, 它有效。 但是当 list[id]
是单词时, 它不起作用 。 为什么?
下面是有关我的职能和正在从事的工作的一些背景情况,尽管为了回答这个问题没有必要。
脚本脚本脚本
function load_tags(id){
$.post( ../php/tags/let_tags.php 组合键 ,{id:id},function(data){
$( #tags_selected ).text(data);
});
}
let_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 ;
}