Convert tags to html entities

后端 未结 7 698
小蘑菇
小蘑菇 2020-12-08 17:16

Is it possible to convert html tags to html entities using javascript/jquery using any way possible such as regex or some other way. If yes, then how?

Exampl

7条回答
  •  Happy的楠姐
    2020-12-08 17:43

    If you have the variable and you want to insert it on a div, you can call text().

    var myVar = "Some vars Some var extra";
    $("div").text(myVar);
    

提交回复
热议问题