相当于不依赖innerHTML的html_entity_decode的javascript?
我正在寻找 PHP 的 html_entity_decode 的 javascript 版本。我发现了这个:
function html_entity_decode(str){
var tarea=document.createElement('textarea');
tarea.innerHTML = str; return tarea.value;
tarea.parentNode.removeChild(tarea);
}
但是,我无法使用它,因为我需要为 FBML/FBJS Facebook 画布应用程序编写此代码,并且他们禁用了innerHTML 和任何类似的内容(我知道这是疯狂的)。
有没有其他方法可以做到这一点,而无需将字符串插入元素并再次将其拉出?请确保仅使用 FBJS 中允许的函数
I'm looking for a javascript version of PHP's html_entity_decode. I found this:
function html_entity_decode(str){
var tarea=document.createElement('textarea');
tarea.innerHTML = str; return tarea.value;
tarea.parentNode.removeChild(tarea);
}
However, I can't use this because I need to write this code for an FBML/FBJS Facebook canvas app, and they have disabled innerHTML and anything similar (insanity, I know).
Is there any other way to do this that doesn't resort to sticking the string into an element and pulling it back out again? Please make sure to only use functions that would be allowed in FBJS
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你必须手动完成。快速的 Google 搜索显示了这个库,它可以满足您的需求。
I guess you'll have to do it manually. A quick Google search brought up this library that does what you want.