1.2 KiB
1.2 KiB
id, title, challengeType, videoUrl, forumTopicId, localeTitle
id | title | challengeType | videoUrl | forumTopicId | localeTitle |
---|---|---|---|---|---|
bad87fed1348bd9aedf08833 | Delete HTML Elements | 0 | https://scrimba.com/p/pVMPUv/ckK73C9 | 17559 | 删除 HTML 元素 |
Description
Instructions
h1
元素以简化视图。
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));
Challenge Seed
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>在大家心目中,猫是慵懒和可爱的化身,它可以睡饱了再起来吃饭,可以逗趣小耗子,可以卖得了萌,使得了坏,这样百变的小怪兽就集结在一只宠物上,怎能不惹人怜爱。</p>