How to insert HTML as Text

前端 未结 5 1651
无人及你
无人及你 2020-12-09 20:03

I want HTML, for example,

, to show show as just that, in plain text, and not interpreted by the browser as an actual tag.

I know JQuery has .h

5条回答
  •  时光说笑
    2020-12-09 20:41

    This is a job for the method createTextNode

    var target div = document.getElementById('div1');
    targetDiv.appendChild(document.createTextNode('

    HelloWorld

    '));

提交回复
热议问题