将数组内容追加到html表

时间:2018-11-29 18:57:19

标签: jquery html arrays append

首先感谢您对此提供的所有帮助。

我试图遍历从Ajax调用返回的数组并将其附加到我的HTML。我尝试了许多示例,但似乎并没有坚持我和我的项目。

这是我当前的Js函数:

function OnSuccess(response) {
    console.log(response);

    $.each(response.MarketingUrls, function (index, element) {
        //$(element.UrlMaterial).find('.dets').html('<a target="_blank">Imprev Marketing Material</a>');
        $('#dets').children('a').text(element.UrlMaterial);
        console.log(element.UrlMaterial); 
    });
    $.each(response.MarketingUrls, function (index, element) {
        console.log(element.Description);
    });

}

这是我要附加到的HTML:

<tr class="details" id="detailsSection">
            <td  colspan="5">
                <div id="dets"><a> </a></div>           
   </td>
        </tr>

0 个答案:

没有答案