JavaScript 中的十六进制到字符串

发布于 2024-12-01 05:29:03 字数 170 浏览 1 评论 0原文

我怎样才能转换: 从: '\\x3c' 到: '<代码><';

我尝试过:

s=eval(s.replace("\\\\", "")); 

不起作用。我如何做到这一点? 提前致谢!

How can I convert:
from:
'\\x3c'
to:
'<';

I tried:

s=eval(s.replace("\\\\", "")); 

does not work. How I do this?
Thanks in advance!

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

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

发布评论

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

评论(3

独﹏钓一江月 2024-12-08 05:29:04

使用 String.fromCharCode 代替evalparseInt 使用基数 16:

s=String.fromCharCode(parseInt(s.substr(2), 16));

Use String.fromCharCode instead of eval, and parseInt using base 16:

s=String.fromCharCode(parseInt(s.substr(2), 16));
古镇旧梦 2024-12-08 05:29:04

如果您使用的是 jQuery,请尝试以下操作: $('

').html('\x3c').text()

Else(取自 此处

function htmlDecode(input){
  var e = document.createElement('div');
  e.innerHTML = input;
  return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
}

If you're using jQuery, try this: $('<div>').html('\x3c').text()

Else (taken from here)

function htmlDecode(input){
  var e = document.createElement('div');
  e.innerHTML = input;
  return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
}
苍风燃霜 2024-12-08 05:29:04

一种方法如下:

var s = "\\x3c";
var s2 = eval('"' + s + '"'); // => "<"

One way to do it, which will incur the wrath of people who believe that "eval" is unequivocally evil, is as follows:

var s = "\\x3c";
var s2 = eval('"' + s + '"'); // => "<"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文