如何将id附加到href?

时间:2016-08-26 22:48:04

标签: javascript jquery json codeigniter-3

我不知道我的问题的正确用语是什么,但我想将客户ID添加到href,例如 href ='index.php / site / get_all_services_ajax / {obj.customer [i ] .customer_id}

请参阅我的代码中的第5行。我怎么能这样做?

<div id='mycoord'></div>
<script>
    $(document).ready(function() {
        $.get('<?php echo base_url();?>index.php/site/get_all_customer_ajax', function (data) {
            var obj = JSON.parse(data)
            for (var i=0; i < obj.customer.length; i++)
            {
                $('#mycoord').append("<a href='<?php echo base_url();?>index.php/site/get_customer_info/{obj.customer[i].customer_id}' <h2>" + obj.customer[i].first_name + "</href></h2><br>");
            }
        })
     });
</script>

1 个答案:

答案 0 :(得分:0)

这应该可以解决问题 -

 $(document).ready(function() { 
        $.get('<?php echo base_url();?>index.php/site/get_all_customer_ajax', function (data) {
            var obj = JSON.parse(data)
            for (var i=0;i <obj.customer.length;i++)
            {
            $('#mycoord').append("<a href='<?php echo base_url();?>index.php/site/get_customer_info/{"+obj.customer[i].customer_id+"}' <h2>" + obj.customer[i].first_name + "</href></h2><br>");
            }

        })
     });