实例代码“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
  $("p").prevAll().css("background-color","yellow");
9
});
10
</script>
11
</head>
12
<body>
13
14
<p>This is a p element.</p>
15
<div>This is a div element (next sibling of p).</div>
16
17
<p>This is a p element (next sibling of p).</p>
18
<h4>This is a h4 element (next sibling of p).</h4>
19
<h5>This is a h5 element (next sibling of p).</h5>
20
21
<span>This is a span element (next sibling of p).</span>
22
<p>This is a p element (next sibling of p).</p>
23
24
</body>
25
</html>