从工具提示发送数据到div不起作用

时间:2013-10-30 04:30:02

标签: javascript php jquery html ajax

我想将数据从工具提示传递给div。 请参阅此图片enter image description here

我想在点击联系广告客户时传递ID(参见图片)

我尝试了很多代码,但还没有成功。

尝试了这个javascript代码,但这是在页面的其他部分工作,但当我在工具提示上尝试这不工作.. 怎么办????

<script type="text/javascript">

//send clicker data to div
    $(function() {  
        $(".clicker").click(function(){
            var data = $(this).attr('id');
            $.ajax({
                type: "POST",
                data: "db_data=" + data,
                success: function(){
                    //alert(data);
                    $('.div-5-owner').text(data);
                }
            });
        });
    });
</script>

3 个答案:

答案 0 :(得分:0)

data的{​​{1}}中传递callback

success

答案 1 :(得分:0)

尝试更改此部分

success: function(my_text){
                    //alert(my_text);
                    $('.div-5-owner').text(my_text);
                }

数据是保留变量

答案 2 :(得分:0)

您正在使用数据变量来分配ID,而它是$ .ajax()的保留字 更改变量名称并尝试:

 $(".clicker").click(function(){
           var id1 = $(this).attr('id');
           console.log(id1);
           console.log("db_data=" + id1);
           $.ajax({
                type: "POST",
                data: "db_data=" + id1,
                success: function(response){ // Here pass the server response as any variable like I used response
                    //alert(response);
                    $('.div-5-owner').text(response);
                }
            });

        });
 });

它可以按你的意愿工作。