最新のWeb開発のチュートリアル
 

リンクのrelプロパティ

リンクオブジェクトリファレンス リンクオブジェクト

現在のドキュメントとリンクされたドキュメントとの関係を返します:

var x = document.getElementById("myLink").rel;

xの結果は次のようになります。

stylesheet
»それを自分で試してみてください

定義と使用法

RELプロパティセットまたは現在のドキュメントとリンクされたドキュメントとの間の関係を定義するスペースで区切られたリストを返します。


ブラウザのサポート

Internet ExplorerFirefoxOperaGoogle ChromeSafari

RELプロパティは、すべての主要なブラウザでサポートされています。

注:値「検索」は、オペラやSafariでサポートされていません。

注:値「サイドバー」はIE、サファリ、またはChromeでサポートされていません。


構文

RELプロパティを返します:

linkObject .rel

RELプロパティを設定します。

linkObject .rel=relationship

プロパティ値

Value Description
alternate Linked page is an alternative version of the current document
appendix Linked page is the appendix page for the current document
chapter Refers to a chapter
contents Linked page is the table of contents for the current document
copyright Linked page is the copyright/policy for the current document
glossary Linked page is the glossary page for the current document
help Linked page is the help page for the current document
index Linked page is the index page for the current document
next Refers to the next page
offline Refers to a location that contains a path to the CDF file
prev Refers to the previous page
search Refers to an XML file in OpenSearch description format
section Link to a section in a list of documents
shortcut icon Refers to an icon location
sidebar Refers to the bookmark panel
start Refers to the first page (used by search engines to show the first page)
stylesheet Linked page is the style sheet for the current document
subsection Linked page is a subsection for the current document

技術的詳細

戻り値: 関係タイプのスペース区切りのリストを表す文字列、

関連ページ

HTMLリファレンス: HTML <link> rel属性


リンクオブジェクトリファレンス リンクオブジェクト