chore(learn): Applied MDX format to Chinese curriculum files (#40462)

This commit is contained in:
Randell Dawson
2020-12-16 00:37:30 -07:00
committed by GitHub
parent 873fce02a2
commit 9ce4a02a41
1665 changed files with 58741 additions and 88042 deletions

View File

@ -1,63 +1,48 @@
---
id: bad87fee1348bd9aedf08802
title: 去除 HTML 的注释
challengeType: 0
videoUrl: 'https://scrimba.com/p/pVMPUv/cBmG9T7'
forumTopicId: 18329
title: 去除 HTML 的注释
---
## Description
<section id='description'>
# --description--
注释的作用是给代码添加一些说明,方便团队合作或日后自己查看,但又不影响代码本身。
注释的另一个用途就是在不删除代码的前提下,让代码不起作用。
在 HTML 中,注释的开始标记是<code>&#60;!--</code>,结束标记是<code>--&#62;</code>
</section>
## Instructions
<section id='instructions'>
现在我们反其道而行之,去掉<code>h1</code>元素、<code>h2</code>元素、<code>p</code>元素的注释。
</section>
在 HTML 中,注释的开始标记是`<!--`,结束标记是`-->`
## Tests
<section id='tests'>
# --instructions--
```yml
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>--&#62;</code>。'
testString: assert(!$('*:contains("-->")')[1]);
现在我们反其道而行之,去掉`h1`元素、`h2`元素、`p`元素的注释。
# --hints--
确保网页中能看到`h1`元素。
```js
assert($('h1').length > 0);
```
</section>
确保网页中能看到`h2`元素。
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<!--
<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>
-->
```js
assert($('h2').length > 0);
```
</div>
确保网页中能看到`p`元素。
```js
assert($('p').length > 0);
```
确保删除了注释的结束标记`-->`
</section>
```js
assert(!$('*:contains("-->")')[1]);
```
# --solutions--
## Solution
<section id='solution'>
</section>