--- id: bad87fee1348bd9aedf08827 title: 創建一個無序列表 challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cDKVPuv' forumTopicId: 16814 dashedName: create-a-bulleted-unordered-list --- # --description-- HTML 有一個特定的元素用於創建無序列表。 無序列表以 `` 結束。 例如: ```html ``` 會創建一個要點列表,包括 `milk` 和 `cheese`。 # --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(/