jquery html() 默认解码 html 实体?
我不知道为什么 jquery html() 会这样做,但是在我这样做之后,
$('html').html()
我会自动将“©”转换为 ©
以避免这种情况?我需要使用 javascript 转储页面的 html,并且不需要这种破坏 html 的无用转换。
I dont know why on earth jquery html() is doing this, but after i do
$('html').html()
i get "©" automatically converted to ©
anyway to avoid this? I need to dump the html of the page using javascript and dont need this useless conversions that are screwing up the html.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这实际上不是 jQuery,甚至不是 JavaScript。
浏览器将保存其自己的底层 DOM 的规范化表示。它将与文档本身非常相似,但将保留字符解码(如上所示)。
阅读以下内容:
http://www.brainjar.com/dhtml/intro/
http://bytes.com/topic/javascript/answers/146257- body-innerhtml-issue
据我所知,恐怕没有办法解决这个问题。
This really isn't the jQuery, or even JavaScript for that matter.
The browser will hold its own normalised representation of the underlying DOM. It will bear a close resemblence the the document itself, but character decoding (like the above) will be preserved.
Have a read of the following:
http://www.brainjar.com/dhtml/intro/
http://bytes.com/topic/javascript/answers/146257-body-innerhtml-issue
I'm afraid there is no way around this as far as I am aware.
jQuery 不应该。检查您在 FF firebug 中真正使用的是什么。
jQuery should not. check what you really get using in FF firebug.