Converting String to HTML - string to “ a href” element

前端 未结 3 1918
星月不相逢
星月不相逢 2021-01-18 16:10

Hello I am having some trouble getting some HTML links to add to my HTML page. I have tried searching around but nothing has helped thus far.

My page will initially

3条回答
  •  情书的邮戳
    2021-01-18 16:17

    Well, solution is quite obvious

    Just replace

     $("#teamRoster").text(rosterListings); 
    

    With:

    $("#teamRoster").html(rosterListings);
    

    Because if you use it as a text then it will treat it as the text and if you write html then it will treat it as a html

提交回复
热议问题