Javascript编码解码问题

发布于 2024-09-19 09:39:33 字数 435 浏览 6 评论 0原文

我有以下 javascript

 var cst = "\x26";
 var other = $("#D1").html();

我的 html 有 D1 div 如下所示

 <div id="D1">\x26</div>

现在当我添加断点并看到我的两个变量 cst 和 other 时。显示了一个&和另一个 \x26。 但

cst.length == 1      

我也

other.length == 4

很困惑。我需要 other 的值相同 (&) 并且我无法更改 Div。 我也在使用 JQuery 所以我可以使用 $(div_id)

I have the following javascript

 var cst = "\x26";
 var other = $("#D1").html();

And my html has D1 div like the following

 <div id="D1">\x26</div>

Now when I add a breakpoint and see my two variables cst and other. One is shown & and another \x26.
Also

cst.length == 1      

but

other.length == 4

I am confused. I need the value of other to be same (&) and I cannot change the Div.
I am also using JQuery so I can use $(div_id)

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

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

发布评论

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

评论(2

垂暮老矣 2024-09-26 09:39:33

HTML 不使用 Javascript 风格的转义字符串。

您的

实际上是 \x26,而不是 &

HTML does not use Javascript-style escape strings.

Your <div> actually says \x26, not &.

谜兔 2024-09-26 09:39:33

试试这个。

var other = eval( "'" + $("#D1").html() + "'" );

Try this.

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