取得する方法 <head>
現在のページのコンテンツ
次のようにjavascript DOM APIを使用できます。
var headContent = document.getElementsByTagName('head')[0].innerHTML;
要素セレクター を使用して、<head>
を取得できます。次に例を示します。
$("head")
//for example:
alert($("head").html()); //alerts the <head> children
単純に:
document.head
//オブジェクトDOMオブジェクトを返します
document.head.innerHTML
//「<title>ページのタイトル...」のようなテキストを返します