freeCodeCamp/curriculum/challenges/japanese/01-responsive-web-design/basic-html-and-html5/comment-out-html.md

1.9 KiB

id title challengeType videoUrl forumTopicId dashedName
bad87fee1348bd9aedf08804 HTML をコメントアウトする 0 https://scrimba.com/p/pVMPUv/cGyGbca 16782 comment-out-html

--description--

コメントを開始するには <!-- を使用し、終了するには --> を使用することを思い出してください。

ここでは、h2 要素が始まる前にコメントを終了するようにします。

--instructions--

h1 要素と p 要素をコメントアウトし、h2 要素はコメントアウトしないようにしてください。

--hints--

h1 要素がページに表示されないようにコメントアウトする必要があります。

assert($('h1').length === 0);

h2 要素は、ページに表示されるようにコメントアウトしないでください。

assert($('h2').length > 0);

p 要素がページに表示されないようにコメントアウトする必要があります。

assert($('p').length === 0);

それぞれのコメントは --> で閉じる必要があります

assert(code.match(/[^fc]-->/g).length > 1);

コード内の h1h2、または p 要素の順序を変更してはいけません。

assert(
  code.match(/<([a-z0-9]){1,2}>/g)[0] === '<h1>' &&
    code.match(/<([a-z0-9]){1,2}>/g)[1] === '<h2>' &&
    code.match(/<([a-z0-9]){1,2}>/g)[2] === '<p>'
);

--seed--

--seed-contents--

<!--
<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<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>
-->

--solutions--

<!--<h1>Hello World</h1>-->
<h2>CatPhotoApp</h2> 
<!--<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> -->