本文介绍了html实体在一个javascript警报?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个来自XML的字符串(我无法编辑),我想通过javascript中的警报打印。
I have a string coming from a XML (which I can't edit) and I'd like to print it trough an alert in javascript.
我的字符串:
This is à string
我需要在警报中打印:
This is à string
是否有一个js html解码?
is there a js html decode?
推荐答案
var encoded = "This is à string";
var decoded = $("<div/>").html(encoded).text();
alert(decoded);
这篇关于html实体在一个javascript警报?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!