Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 JSON 字符串(来自服务器响应)中,我有一个 HTML 标签,例如abc<br/>dd. 该字符串作为其内容进入 DOM 元素。
abc<br/>dd
如何将其显示为正确的 HTML,而不是原始字符串?
您需要将其设置为 HTML 而不是文本。直接使用 DOM,你会设置element.innerHTML = myValue;. 如果你使用 jQuery,你会使用$('#myElement').html(myValue);.
element.innerHTML = myValue;
$('#myElement').html(myValue);