实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js">
5
</script>
6
<script>
7
$(document).ready(function(){
8
  $("button").click(function(){
9
    var btn = $(this).text();
10
    $("p").css("background-color","white"); 
11
    $("p" + btn).css("background-color","yellow"); 
12
  });
13
});
14
</script>
15
</head>
16
<body>
17
18
<p>The first paragraph in body, and the first child in div.</p>
19
20
<div style="border:1px solid;">
21
<p>The first paragraph in div, and the first child in div.</p>
22
<p>The last paragraph in div, and the last child in div.</p>