HTML代码如下: [body] [strong]文字[/] [/] 以下哪个选择器,能够取得到上面的strong标记?
A: $(":strong")
B: $("div.strong")
C: $("div>strong")
D: $("div
A: $(":strong")
B: $("div.strong")
C: $("div>strong")
D: $("div
举一反三
- 要选择下列代码中第一个strong标签并将字体颜色设置为红色,该如何写css。() [body] [h1]我[strong]超级[/][strong]喜欢[/]网页设计.[/] [h1]我[em]不是很[strong]喜欢[/][/em]网页设计.[/] </body A: h1strong{color:red;} B: .sh1.strong{color:red;} C: strong{color:red;} D: h1>strong{color:red;}
- 把下面代码中第一个h1下面的strong元素变为红色,第二个strong不受影响。 [h1]这是[strong]非常[/]重要的[/] [h1]这个[em]已经[strong]非常[/][/em]重要了</h1 A: h1>strong{color:red;} B: h1 strong{color:red;}
- 把下面代码中Strong元素变为红色 [h1]这是[strong]非常[/]重要的[/] [h1]这个[em]已经[strong]非常[/][/em]重要了</h1 A: h1>strong{color:red;} B: h1 strong{color:red;}
- 请问下列哪个标签是错误的? A: <;head>;<;/head>;<;body>;<;/body>; B: <;strong>;<;div>;<;/div>;<;/strong>; C: <;head>;<;title>;<;/head>;<;/title>; D: <;body>;<;div>;<;/div>;<;/body>;
- 哪个选择器仅选中如下网页元素中的“测试”文字?[div class="demo"]测试[div id=“test"]样例 A: .demo B: demo C: div D: ~demo