0

我想将数据从工具提示传递到 div。看到这张图片在此处输入图像描述

当我们点击联系广告商时,我想传递 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>
4

3 回答 3

0

尝试改变这部分

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

数据是保留变量

于 2013-10-30T05:13:59.887 回答
0

点赞的传data进去callbacksuccess

success:function(data){ // <-- you missed data here which is your server response
            //alert(data);
            $('.div-5-owner').html(data);
}
于 2013-10-30T04:34:02.627 回答
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);
                }
            });

        });
 });

它应该可以按您的意愿工作。

于 2013-10-30T05:19:48.690 回答