如何使用 jquery 或 JS 获取当前页面的 <head> 内容
Posted
技术标签:
【中文标题】如何使用 jquery 或 JS 获取当前页面的 <head> 内容【英文标题】:how to get <head> content of the current page with jquery or JS 【发布时间】:2011-04-05 06:47:10 【问题描述】:如何获取<head>
当前页面的内容
【问题讨论】:
【参考方案1】:您可以像这样使用 javascript DOM API:
var headContent = document.getElementsByTagName('head')[0].innerhtml;
【讨论】:
只需使用document.head.innerHTML
。 Can I use?
@AlexandruEftimie 而document.head
可能是大多数现代浏览器的首选。它不适用于 Internet Explorer 8 或更早版本【参考方案2】:
您可以使用element selector 获取<head>
,例如:
$("head")
//for example:
alert($("head").html()); //alerts the <head> children
You can give it a try here
【讨论】:
【参考方案3】:简单来说:
document.head
// 返回对象 DOM 对象
document.head.innerHTML
// 返回文本,例如:'
【讨论】:
检查document.head
的浏览器兼容性。我相信 IE 直到 v9 才支持它。
是的。从 IE9 开始支持 developer.mozilla.org/en-US/docs/Web/API/Document/head以上是关于如何使用 jquery 或 JS 获取当前页面的 <head> 内容的主要内容,如果未能解决你的问题,请参考以下文章