js转码和解码兼容低版本火狐

Posted huangzebin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js转码和解码兼容低版本火狐相关的知识,希望对你有一定的参考价值。

    function htmlEncode(html) {
                var temp = document.createElement("div");
                (temp.innerText != null) ? (temp.innerText = html) : (temp.textContent = html);
                var output = temp.innerHTML;
                temp = null;
                return output;
            }
            function HTMLDecode(text) {
                var temp = document.createElement("div");
                temp.innerHTML = text;
                var output = temp.innerText || temp.textContent;
                temp = null;
                return output;
            }














以上是关于js转码和解码兼容低版本火狐的主要内容,如果未能解决你的问题,请参考以下文章

Js链接里的中文参数的转码和解码

js中post中文参数转码和解码

encodeURI , encodeURIComponent , decodeURL , decodeURIComponent 转码与解码

javascript使用btoa和atob来进行Base64转码和解码

base64的转码与解码

字符转码(escape()、encodeURI()、encodeURIComponent()区别详解)