--- id: bad87fee1348bd9aedf08827 title: 创建一个无序列表 challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cDKVPuv' forumTopicId: 16814 dashedName: create-a-bulleted-unordered-list --- # --description-- HTML 有一个特定的元素用于创建无序列表。 无序列表以 `` 结束。 例如: ```html ``` 将会创建一个包含牛奶和奶酪的无序列表。 # --instructions-- 请删除页面底部的两个 `p` 元素,然后在底部创建一个无序列表,其中包含你认为猫咪最喜欢的三件东西。 # --hints-- 应存在一个 `ul` 无序列表。 ```js assert($('ul').length > 0); ``` 应在 `ul` 无序列表中添加三个 `li` 条目。 ```js assert($('ul li').length > 2); ``` 确保 `ul` 无序列表有结束标签。 ```js assert( code.match(/<\/ul>/gi) && code.match(/