@use JSDoc

同義詞

語法

{@link namepathOrURL} [連結文字]{@link namepathOrURL}

概觀

{@link} 內嵌標籤會建立連結到您指定的 namepath 或 URL。當您使用 {@link} 標籤時,您也可以提供連結文字,使用多種不同的格式之一。如果您沒有提供任何連結文字,JSDoc 會使用 namepath 或 URL 作為連結文字。

如果您需要連結到教學課程,請使用 {@tutorial} 內嵌標籤,而不是 {@link} 標籤。

預設情況下,{@link} 會產生標準 HTML anchor 標籤。不過,您可能偏好以等寬字型呈現某些連結,或指定個別連結的格式。您可以使用 {@link} 標籤的下列同義詞來控制連結的格式

您也可以在 JSDoc 的設定檔中設定下列選項之一;請參閱 設定 JSDoc 以取得更多詳細資料

注意:雖然預設 JSDoc 範本會正確呈現所有這些標籤,但其他範本可能無法辨識 {@linkcode}{@linkplain} 標籤。此外,其他範本可能會忽略連結呈現的設定選項。

範例

下列範例顯示提供連結文字給 {@link} 標籤的所有方式

提供連結文字
/**
 * See {@link MyClass} and [MyClass's foo property]{@link MyClass#foo}.
 * Also, check out {@link http://www.google.com|Google} and
 * {@link https://github.com GitHub}.
 */
function myFunction() {}

預設情況下,上述範例會產生類似下列的輸出

{@link} 標籤的輸出
See <a href="MyClass.html">MyClass</a> and <a href="MyClass.html#foo">MyClass's foo
property</a>. Also, check out <a href="http://www.google.com">Google</a> and
<a href="https://github.com">GitHub</a>.

如果設定屬性 templates.cleverLinkstrue,上述範例會產生下列輸出

啟用聰明連結的輸出
See <a href="MyClass.html"><code>MyClass</code></a> and <a href="MyClass.html#foo">
<code>MyClass's foo property</code></a>. Also, check out
<a href="http://www.google.com">Google</a> and <a href="https://github.com">GitHub</a>.