--- id: bad87fee1348bd9aede08817 title: 將 a 嵌套在段落中 challengeType: 0 forumTopicId: 18244 dashedName: nest-an-anchor-element-within-a-paragraph --- # --description-- 你可以在其他文本元素內嵌套鏈接。 ```html

Here's a link to www.freecodecamp.org for you to follow.

``` 讓我們來拆解一下這個例子。 通常,文本是被包裹在 `p` 元素內: ```html

Here's a ... for you to follow.

``` 接下來是*錨點*元素 ``(它需要結束標籤 ``): ```html ... ``` `target` 是錨點元素的一個屬性,它用來指定鏈接的打開方式。 屬性值 `_blank` 表示鏈接會在新標籤頁打開。 `href` 是錨點元素的另一個屬性,它用來指定鏈接的 URL: ```html ... ``` `a` 元素內的文本 `link to www.freecodecamp.org` 叫作錨文本,會顯示爲一個可以點擊的鏈接: ```html link to freecodecamp.org ``` 此示例的最終輸出結果是這樣: Here's a link to www.freecodecamp.org for you to follow. # --instructions-- 創建一個新的段落 `p` 元素來包裹 `a` 元素。 不要創建一個新的錨點標籤。 新段落應有文本 `View more cat photos`,其中 `cat photos` 是一個鏈接,其餘是純文本。 # --hints-- 應該只有一個 `a` 元素。 ```js assert( $('a').length === 1 ); ``` `a` 元素應該鏈接到 “`https://www.freecatphotoapp.com`”。 ```js assert( $('a[href="https://www.freecatphotoapp.com"]').length === 1 ); ``` `a` 元素應有錨文本 `cat photos`。 ```js assert( $('a') .text() .match(/cat\sphotos/gi) ); ``` 應該創建一個新的 `p` 元素。 頁面中應至少包含 3 個 `p` 標籤。 ```js assert($('p') && $('p').length > 2); ``` `a` 應嵌套在新創建的 `p` 元素內。 ```js assert( $('a[href="https://www.freecatphotoapp.com"]').parent().is('p') ); ``` `p` 元素應該包含文本 `View more`(在它後面有一個空格)。 ```js assert( $('a[href="https://www.freecatphotoapp.com"]') .parent() .text() .match(/View\smore\s/gi) ); ``` `a` 元素 應有文本 `View more`。 ```js assert( !$('a') .text() .match(/View\smore/gi) ); ``` 確保每個 `p` 元素有結束標籤。 ```js assert( code.match(/<\/p>/g) && code.match(/

/g).length === code.match(/

/g) && code.match(//g).length === code.match(/CatPhotoApp

cat photos A cute orange cat lying on its back.

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

``` # --solutions-- ```html

CatPhotoApp

View more cat photos

A cute orange cat lying on its back.

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

```