实例代码“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
  $("div").focusin(function(){
9
    $(this).css("background-color","#FFFFCC");
10
  });
11
  $("div").focusout(function(){
12
    $(this).css("background-color","#FFFFFF");
13
  });
14
});
15
</script>
16
</head>
17
<body>
18
19
<div style="border: 1px solid black;padding:10px;">
20
First name: <input type="text"><br>
21
Last name: <input type="text">
22
</div>
23
24
<p>Click an input field to get focus. Click outside an input field to lose focus.</p>
25
26
</body>
27
</html>