1.5 KiB
1.5 KiB
id, challengeType, videoUrl, forumTopicId, localeTitle
id | challengeType | videoUrl | forumTopicId | localeTitle |
---|---|---|---|---|
bad87fee1348bd9aedf08802 | 0 | https://scrimba.com/p/pVMPUv/cBmG9T7 | 18329 | 去除 HTML 的注释 |
Description
<!--
,结束标记是-->
。
Instructions
h1
元素、h2
元素、p
元素的注释。
Tests
tests:
- text: '确保网页中能看到<code>h1</code>元素。'
testString: assert($("h1").length > 0);
- text: '确保网页中能看到<code>h2</code>元素。'
testString: assert($("h2").length > 0);
- text: '确保网页中能看到<code>p</code>元素。'
testString: assert($("p").length > 0);
- text: '确保删除了注释的结束标记<code>--></code>。'
testString: assert(!$('*:contains("-->")')[1]);
Challenge Seed
<!--
<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>
-->