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

时间:2021-12-20 21:17:31

how to get <head> content of the current page

如何获取当前页面的内容

3 个解决方案

#1


44  

You could use the javascript DOM API like this:

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

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

#2


14  

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

你可以在这里尝试一下

#3


3  

Simply as:

简单地说:

document.head

document.head

// returns object DOM Object

//返回对象DOM对象

document.head.innerHTML

document.head.innerHTML

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

//返回文字,例如:'

页面标题......'</p>

#1


44  

You could use the javascript DOM API like this:

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

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

#2


14  

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

你可以在这里尝试一下

#3


3  

Simply as:

简单地说:

document.head

document.head

// returns object DOM Object

//返回对象DOM对象

document.head.innerHTML

document.head.innerHTML

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

//返回文字,例如:'

页面标题......'</p>