--- id: bad87fee1348bd9aec908855 title: 給每個元素一個唯一的 id challengeType: 0 forumTopicId: 18191 dashedName: give-each-element-a-unique-id --- # --description-- 也可以通過 jQuery 根據每個按鈕唯一的 id 來定位出它們。 給每一個按鈕設置唯一的 id,以 `target1` 開始,`target6` 結束。 確保 `target1` 到 `target3` 在 `#left-well` 之中,`target4` 到 `target6` 在 `#right-well` 之中。 # --hints-- 其中一個 `button` 元素應該有 id `target1`。 ```js assert( $('#left-well').children('#target1') && $('#left-well').children('#target1').length > 0 ); ``` 其中一個 `button` 元素應該有 id `target2`。 ```js assert( $('#left-well').children('#target2') && $('#left-well').children('#target2').length > 0 ); ``` 其中一個 `button` 元素應該有 id `target3`。 ```js assert( $('#left-well').children('#target3') && $('#left-well').children('#target3').length > 0 ); ``` 其中一個 `button` 元素應該有 id `target4`。 ```js assert( $('#right-well').children('#target4') && $('#right-well').children('#target4').length > 0 ); ``` 其中一個 `button` 元素應該有 id `target5`。 ```js assert( $('#right-well').children('#target5') && $('#right-well').children('#target5').length > 0 ); ``` 其中一個 `button` 元素應有 id `target6`。 ```js assert( $('#right-well').children('#target6') && $('#right-well').children('#target6').length > 0 ); ``` # --seed-- ## --seed-contents-- ```html