Can I escape html special chars in javascript?

后端 未结 15 1430
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 02:26

I want to display a text to HTML by a javascript function. How can I escape html special chars in JS? Is there an API ?

15条回答
  •  梦如初夏
    2020-11-22 03:04

    DOM Elements support converting text to HTML by assigning to innerText. innerText is not a function but assigning to it works as if the text were escaped.

    document.querySelectorAll('#id')[0].innerText = 'unsafe " String >><>';
    

提交回复
热议问题