jquery html() 默认解码 html 实体?

发布于 2024-10-05 06:28:38 字数 183 浏览 0 评论 0原文

我不知道为什么 jquery html() 会这样做,但是在我这样做之后,

$('html').html()

我会自动将“&copy”转换为 ©

以避免这种情况?我需要使用 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 技术交流群。

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

发布评论

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

评论(2

私藏温柔 2024-10-12 06:28:38

这实际上不是 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.

記柔刀 2024-10-12 06:28:38

jQuery 不应该。检查您在 FF firebug 中真正使用的是什么。

console.log($('html').html());

jQuery should not. check what you really get using in FF firebug.

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