Javascript编码html标签,但保持url链接完好无损

时间:2015-01-29 14:21:20

标签: javascript html

我使用javascript编码HTML标记的功能。

function htmlEncode(value) {
    //create a in-memory div, set it's inner text(which jQuery automatically encodes)
    //then grab the encoded contents back out.  The div never exists on the page.
    return $('<div/>').text(value).html();
}

如何编码所有希望html链接?我不想编码html链接,因此编码后用户可以点击链接。但我想编码所有其他html标签。

这可能吗?

0 个答案:

没有答案