我使用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标签。
这可能吗?