我希望将html标签编码为字符串,除了一些标签,例如使用javascript的锚标签 类似于php的函数“htmlspecialchar”
注意:我从不想对html标签进行条带化。
假设我的html字符串就像
<div><span>test string</span>div content goes here <a herf="xyz.com">My Portal</a></div>
预期输出应为
<div><span>test string</span>div content goes here My Portal </div>
这里“我的门户应该”转向超链接而不是编码。但是其他所有其他标签都会被编码,并应作为字符串
显示在视图上