如何获得用jquery或JS获取当前页面的内容

发布于 2024-09-16 12:41:33 字数 31 浏览 7 评论 0原文

如何获取当前页面的内容

how to get <head> content of the current page

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

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

发布评论

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

评论(3

记忆消瘦 2024-09-23 12:41:34

您可以像这样使用 javascript DOM API:

var headContent = document.getElementsByTagName('head')[0].innerHTML;

You could use the javascript DOM API like this:

var headContent = document.getElementsByTagName('head')[0].innerHTML;
¢好甜 2024-09-23 12:41:34

您可以使用 元素选择器 来获取 ,例如:

$("head")
//for example:
alert($("head").html()); //alerts the <head> children

您可以在这里尝试一下

You can use an element selector to get <head>, for example:

$("head")
//for example:
alert($("head").html()); //alerts the <head> children

You can give it a try here

鸵鸟症 2024-09-23 12:41:34

简单来说:

document.head

它返回一个对象 DOM Object。

document.head.innerHTML

它返回文本,例如:“

页面标题...”。

Simply as:

document.head

which returns an object DOM Object.

document.head.innerHTML

which returns text, like: '<title>Title of the page...'.

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