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

时间:2010-08-28 21:09:40

标签: javascript jquery head

如何获取当前页面的<head>内容

3 个答案:

答案 0 :(得分:49)

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

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

答案 1 :(得分:13)

您可以使用element selector获取<head>,例如:

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

You can give it a try here

答案 2 :(得分:3)

简单地说:

document.head

//返回对象DOM对象

document.head.innerHTML

//返回文字,例如:&#39;&lt; title&gt;页面标题...&#39;