Convert tags to html entities

后端 未结 7 691
小蘑菇
小蘑菇 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:58

    Try this function for the HTML special characters:

    function htmlencode(str) {
        return str.replace(/[&<>"']/g, function($0) {
            return "&" + {"&":"amp", "<":"lt", ">":"gt", '"':"quot", "'":"#39"}[$0] + ";";
        });
    }
    
    0 讨论(0)
提交回复
热议问题