Files

3.9 KiB
Raw Permalink Blame History

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
bad87fee1348bd9aede08817 將 a 嵌套在段落中 0 18244 nest-an-anchor-element-within-a-paragraph

--description--

你可以在其他文本元素內嵌套鏈接。

<p>
  Here's a <a target="_blank" href="https://www.freecodecamp.org"> link to www.freecodecamp.org</a> for you to follow.
</p>

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

<p> Here's a ... for you to follow. </p>

接下來是錨點元素 <a>(它需要結束標籤 </a>

<a> ... </a>

target 是錨點元素的一個屬性,它用來指定鏈接的打開方式。 屬性值 _blank 表示鏈接會在新標籤頁打開。 href 是錨點元素的另一個屬性,它用來指定鏈接的 URL

<a href="https://www.freecodecamp.org" target="_blank"> ... </a>

a 元素內的文本 link to www.freecodecamp.org 叫作錨文本,會顯示爲一個可以點擊的鏈接:

<a href=" ... " target="...">link to freecodecamp.org</a>

此示例的最終輸出結果是這樣:

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

--instructions--

創建一個新的段落 p 元素來包裹 a 元素。 不要創建一個新的錨點標籤。 新段落應有文本 View more cat photos,其中 cat photos 是一個鏈接,其餘是純文本。

--hints--

應該只有一個 a 元素。

assert(
  $('a').length  === 1 
);

a 元素應該鏈接到 “https://www.freecatphotoapp.com”。

assert(
  $('a[href="https://www.freecatphotoapp.com"]').length  === 1 
);

a 元素應有錨文本 cat photos

assert(
  $('a')
    .text()
    .match(/cat\sphotos/gi)
);

應該創建一個新的 p 元素。 頁面中應至少包含 3 個 p 標籤。

assert($('p') && $('p').length > 2);

a 應嵌套在新創建的 p 元素內。

assert(
  $('a[href="https://www.freecatphotoapp.com"]').parent().is('p')
);

p 元素應該包含文本 View more(在它後面有一個空格)。

assert(
  $('a[href="https://www.freecatphotoapp.com"]')
    .parent()
    .text()
    .match(/View\smore\s/gi)
);

a 元素 應有文本 View more

assert(
  !$('a')
    .text()
    .match(/View\smore/gi)
);

確保每個 p 元素有結束標籤。

assert(
  code.match(/<\/p>/g) &&
    code.match(/<p/g) &&
    code.match(/<\/p>/g).length === code.match(/<p/g).length
);

確保每個 a 元素有結束標籤。

assert(
  code.match(/<\/a>/g) &&
    code.match(/<a/g) &&
    code.match(/<\/a>/g).length === code.match(/<a/g).length
);

--seed--

--seed-contents--

<h2>CatPhotoApp</h2>
<main>

  <a href="https://www.freecatphotoapp.com" target="_blank">cat photos</a>

  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">

  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>

--solutions--

<h2>CatPhotoApp</h2>
<main>
  <p>View more <a target="_blank" href="https://www.freecatphotoapp.com">cat photos</a></p>

  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">

  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>