美文网首页js
html实体转换

html实体转换

作者: u14e | 来源:发表于2017-02-23 11:01 被阅读82次
    function htmlEscape(text) {
        return text.replace(/[<>"&]/g, function(match, pos, originalText) {
            switch(match) {
                case "<":
                    return "&lt;";
                case ">":
                    return "&gt;";
                case "&":
                    return "&amp;";
                case "\"":
                    return "&quot;";
            }
        });
    }
    

    相关文章

      网友评论

        本文标题:html实体转换

        本文链接:https://www.haomeiwen.com/subject/zyovwttx.html