JavaScript html 解码

发布于 2024-10-12 08:42:41 字数 311 浏览 4 评论 0原文

当我在asp.net应用程序中通过ajax接收html文本时,它看起来像:

<span%20style='color:green;font-weight:bold'>%20Text%20Msg</span>

javascript如何将该文本解码为普通html?

<span style='color:green;font-weight:bold'> Text Msg </span>

谢谢!

When I receive html text by ajax in asp.net application it looks like:

<span%20style='color:green;font-weight:bold'>%20Text%20Msg</span>

how is it possible in javascript decode that text to normal html?

<span style='color:green;font-weight:bold'> Text Msg </span>

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜无邪 2024-10-19 08:42:41

这里有一个很好的函数,可以为您做到这一点 - http://phpjs.org/functions/htmlspecialchars_decode:427

Nice function here that does it for you - http://phpjs.org/functions/htmlspecialchars_decode:427

浅唱ヾ落雨殇 2024-10-19 08:42:41

您可能最适合寻找评论中已经提到的服务器端解决方案,因为这似乎是服务器端问题。

如果您出于某种原因希望无论如何都执行此客户端操作,这里有一个解决方案:

var str = "<span%20style='color:green;font-weight:bold'>%20Text%20Msg</span>";
var fixedStr = decodeURIComponent(str).replace(/</g,'<').replace(/>/g,'>');

You are probably best suited with finding a server side solution as already mentioned in the comments, since this seems like a server side problem.

If you for some reason wish to do this client side anyway, here is a solution:

var str = "<span%20style='color:green;font-weight:bold'>%20Text%20Msg</span>";
var fixedStr = decodeURIComponent(str).replace(/</g,'<').replace(/>/g,'>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文