在属性中存储HTML

时间:2016-02-09 18:10:05

标签: javascript jquery escaping character

我将HTML代码存储在元素属性中,如此。

<div data-html-code="<iframe width="560" height="315" src="https://www.youtube.com/embed/sNhhvQGsMEc" frameborder="0" allowfullscreen></iframe>"></div>

如何使用jQuery / Javascript转义所有必要的字符以使其有效?

1 个答案:

答案 0 :(得分:1)

使用此function htmlEscape(str) { return String(str) .replace(/&/g, '&amp;') .replace(/"/g, '&quot;') .replace(/'/g, '&#39;') .replace(/</g, '&lt;') .replace(/>/g, '&gt;'); } 方法

ApplicationController

这应该为您提供一个可用作有效html属性值的字符串