web-dev-qa-db-ja.com

jqueryまたはJSで現在のページの<head>コンテンツを取得する方法

取得する方法 <head>現在のページのコンテンツ

39
faressoft

次のようにjavascript DOM APIを使用できます。

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

要素セレクター を使用して、<head>を取得できます。次に例を示します。

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

ここで試してみることができます

13
Nick Craver

単純に:

document.head

//オブジェクトDOMオブジェクトを返します

document.head.innerHTML

//「<title>ページのタイトル...」のようなテキストを返します

4
egoproxy