我将HTML代码存储在元素属性中,如此。
<div data-html-code="<iframe width="560" height="315" src="https://www.youtube.com/embed/sNhhvQGsMEc" frameborder="0" allowfullscreen></iframe>"></div>
如何使用jQuery / Javascript转义所有必要的字符以使其有效?
答案 0 :(得分:1)
使用此function htmlEscape(str) {
return String(str)
.replace(/&/g, '&')
.replace(/"/g, '"')
.replace(/'/g, ''')
.replace(/</g, '<')
.replace(/>/g, '>');
}
方法
ApplicationController
这应该为您提供一个可用作有效html属性值的字符串