Convert tags to html entities

后端 未结 7 693
小蘑菇
小蘑菇 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条回答
  •  一整个雨季
    2020-12-08 17:44

    As you tagged with jquery, a jQuery-powered solution should work for you:

    $("
    ").text("
    bleh
    whatever").html()

    Replace the argument to the text-method with whatever markup you want to escape.

提交回复
热议问题