实例代码“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").filter(document.getElementById("intro")).css("background-color","yellow");
9
});
10
</script>
11
</head>
12
<body>
13
14
<h1>Welcome to My Homepage</h1>
15
<p>My name is Donald.</p>
16
<p id="intro">I live in Duckburg.</p>
17
<p>My best friend is Mickey.</p>
18
19
</body>
20
</html>