Javascript编码解码问题
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTML 不使用 Javascript 风格的转义字符串。
您的
实际上是
\x26
,而不是&
。HTML does not use Javascript-style escape strings.
Your
<div>
actually says\x26
, not&
.试试这个。
Try this.