如何在jquery中动态打印id

时间:2013-06-30 09:47:30

标签: javascript jquery

说我有类似下面的功能

<code>
<pre>
function messageHandler(user_id,add_remove_id)
 {
    var type=3;
    var data = 'user_id=' + user_id+'&add_remove_id='+add_remove_id+'&type='+type;
    alert(data);
    $.ajax({
        type:"POST",
        url:"add_rem_friend.php", 
        data:data,             
        success:function(html) {
  //**********************************************   
  // i want to put the value of add_remove_id, which i taking as argument/parameter      
          //   $('#add_remove_id').html(html); will not work
           // is there any way? 
 //************************************************* 
        }
        });     
        return false;
 }
</pre>
</code>

我想把add_remove_id的值,我作为参数/参数

<pre>
 $('#add_remove_id').html(html); will not work
</pre>

有什么办法吗?

2 个答案:

答案 0 :(得分:1)

问题是:add_remove_id是一个字符串变量,你必须将这个字符串连接到jquery选择器。
试试这个:

$('#'+add_remove_id).html(html);

如果您使用:

$('#add_remove_id').html(html);

jQuery搜索id = add_remove_id

的元素

答案 1 :(得分:1)

正确连接字符串

$('#'+add_remove_id).html(html);

然后这肯定会有用