点击查看更多猫图.
猫咪最喜欢的三件东西:
- 猫薄荷
- 激光笔
- 千层饼
猫咪最讨厌的三件东西:
- 跳蚤
- 打雷
- 同类
red-text
class 选择器应用在第一个p
元素上。
h2
元素应该是红色的。'
testString: assert($("h2").css("color") === "rgb(255, 0, 0)");
- text: 'h2
元素应该含有red-text
class 选择器。'
testString: assert($("h2").hasClass("red-text"));
- text: '第一个p
元素应该为红色。'
testString: assert($("p:eq(0)").css("color") === "rgb(255, 0, 0)");
- text: '第二和第三个p
元素不应该为红色。'
testString: assert(!($("p:eq(1)").css("color") === "rgb(255, 0, 0)") && !($("p:eq(2)").css("color") === "rgb(255, 0, 0)"));
- text: '第一个p
元素应该包含red-text
class 选择器。'
testString: assert($("p:eq(0)").hasClass("red-text"));
```
点击查看更多猫图.
猫咪最喜欢的三件东西:
猫咪最讨厌的三件东西: