Html解码器和编码器

时间:2015-02-10 05:17:20

标签: jquery html underscore.js decoder

我想将所有$ nbsp,& iexcl与其字符符号进行转换。 需要解码的值在数组中。

A[
{ id:1 , value:"¡resu"},
{id:1 , value:" hi"}]

有没有解决方案?

我在我的项目中使用了html和javascript。 答案我想看:

    A[0].value = ¡res

2 个答案:

答案 0 :(得分:1)



var a = $.parseHTML('  lalala »');
alert(a[0].textContent);

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

String.prototype.decodeEscapeSequence = function() {
    return this.replace(/\\x([0-9A-Fa-f]{2})/g, function() {
        return String.fromCharCode(parseInt(arguments[1], 16));
    });
};


var decodedString = str.decodeEscapeSequence();