案例:jQuery UI案例     状态:可编辑再运行    进入竖版
 运行结果 
AخA
 
1
<!doctype html>
2
<html lang="en">
3
<head>
4
  <meta charset="utf-8">
5
  <title>jQuery UI 按钮(Button) - 复选框</title>
6
  <link rel="stylesheet" href="/css/jqu1.10.4/jquery-ui.min.css">
7
  <script src="/js/jqu/jquery.min1.10.2.js"></script>
8
  <script src="/js/jqu/jquery-ui.min1.10.4.js"></script>
9
  <link rel="stylesheet" href="jqueryui/style.css">
10
  <script>
11
  $(function() {
12
    $( "#check" ).button();
13
    $( "#format" ).buttonset();
14
  });
15
  </script>
16
  <style>
17
  #format { margin-top: 2em; }
18
  </style>
19
</head>
20
<body>
21
 
22
<input type="checkbox" id="check"><label for="check">切换</label>
23
 
24
<div id="format">
25
  <input type="checkbox" id="check1"><label for="check1">B</label>
26
  <input type="checkbox" id="check2"><label for="check2">I</label>
27
  <input type="checkbox" id="check3"><label for="check3">U</label>
28
</div>
29
 
30
 
31
</body>
32
</html>