6.4 KiB
6.4 KiB
id, title, challengeType, videoUrl, forumTopicId, dashedName
id | title | challengeType | videoUrl | forumTopicId | dashedName |
---|---|---|---|---|---|
bad88fee1348bd9aedf08816 | アンカー要素でページ内部のセクションにリンクする | 0 | https://scrimba.com/p/pVMPUv/cyrDRUL | 301098 | link-to-internal-sections-of-a-page-with-anchor-elements |
--description--
a
(アンカー) 要素は、ウェブページ内の異なるセクションにジャンプする内部リンク作成にも使用することができます。
内部リンクを作成するには、リンクの href
属性に、ハッシュ記号 #
に続けて内部リンク先にする要素の id
属性の値を設定します。ページの下の方の要素をリンク先にするような使われ方が一般的です。 そして、リンク先の要素に同じ id
属性を追加します。 id
は、要素を一意に表す属性です。
以下は内部アンカーリンクとそのターゲット要素の例です。
<a href="#contacts-header">Contacts</a>
...
<h2 id="contacts-header">Contacts</h2>
ユーザーが Contacts
リンクをクリックすると、ウェブページ内の Contacts という見出し要素があるセクションに移動します。
--instructions--
外部リンクを内部リンクに変更するために、href
属性を #footer
に変更し、またテキストを cat photos
から Jump to Bottom
へ変更してください。
アンカータグから target="_blank"
属性を削除してください。この属性があるとリンクされたドキュメントが新しいタブで開かれるためです。
次に、ページの一番下の <footer>
要素に、footer
という値の id
属性を追加してください。
--hints--
ページにアンカータグが 1 つだけあるようにしてください。
assert($('a').length == 1);
ページに footer
タグが 1 つだけあるようにしてください。
assert($('footer').length == 1);
a
タグの href
属性は "#footer" に設定されている必要があります。
assert($('a').eq(0).attr('href') == '#footer');
a
タグが target
属性を持たないようにしてください。
assert(
typeof $('a').eq(0).attr('target') == typeof undefined ||
$('a').eq(0).attr('target') == true
);
a
タグのテキストは "Jump to Bottom" である必要があります。
assert(
$('a')
.eq(0)
.text()
.match(/Jump to Bottom/gi)
);
footer
タグの id
属性は "footer" に設定されている必要があります。
assert($('footer').eq(0).attr('id') == 'footer');
--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. Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched. 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. 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.</p>
<p>Meowwww loved it, hated it, loved it, hated it yet spill litter box, scratch at owner, destroy all furniture, especially couch or lay on arms while you're using the keyboard. Missing until dinner time toy mouse squeak roll over. With tail in the air lounge in doorway. Man running from cops stops to pet cats, goes to jail.</p>
<p>Intently stare at the same spot poop in the plant pot but kitten is playing with dead mouse. Get video posted to internet for chasing red dot leave fur on owners clothes meow to be let out and mesmerizing birds leave fur on owners clothes or favor packaging over toy so purr for no reason. Meow to be let out play time intently sniff hand run outside as soon as door open yet destroy couch.</p>
</main>
<footer>Copyright Cat Photo App</footer>
--solutions--
<h2>CatPhotoApp</h2>
<main>
<a href="#footer">Jump to Bottom</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. Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched. 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. 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.</p>
<p>Meowwww loved it, hated it, loved it, hated it yet spill litter box, scratch at owner, destroy all furniture, especially couch or lay on arms while you're using the keyboard. Missing until dinner time toy mouse squeak roll over. With tail in the air lounge in doorway. Man running from cops stops to pet cats, goes to jail.</p>
<p>Intently stare at the same spot poop in the plant pot but kitten is playing with dead mouse. Get video posted to internet for chasing red dot leave fur on owners clothes meow to be let out and mesmerizing birds leave fur on owners clothes or favor packaging over toy so purr for no reason. Meow to be let out play time intently sniff hand run outside as soon as door open yet destroy couch.</p>
</main>
<footer id="footer">Copyright Cat Photo App</footer>