XML 子タグにいくつかの Anchor(A HREF) タグを含む XML ファイルがあります。JQuery を使用してコンテンツをロードし、動的 HTML 要素を生成すると、リンクが表示されません。
サンプル XML タグ:
<question>
<number>12</number>
<qts>How can I download the mobile app?</qts>
<ans>Please login to the site – <a href="https://google.com">https://google.com</a> from your desktop/laptop. Go to the subscribe page and download the file that is appropriate for you.</ans>
</question>
JQuery タグの読み込み:
xml_ans = $(this).find('ans').text();
問題は、https://google.comがリンクとして表示されないことです。
誰かがそれに光やヒントを投げてもらえますか?