jquery ui tab标签
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 |
<!DOCTYPE html> <html> <head> <title>tab</title> <style type= "text/css" > #tabs{ width:500px; height:500px; margin:0 auto; } .ui-widget-header{ border:1px solid grey; background:grey; color: #fff; font-weight:bold; } </style> <link rel= "stylesheet"
href= "css/jquery-ui-1.10.4.min.css"
media= "screen" /> <script type= "text/javascript"
src= "js/jquery-1.10.2.js" ></script> <script type= "text/javascript"
src= "js/jquery-ui-1.10.4.min.js" ></script> </head> <body> <div id= "tabs" > <ul> <li><a href= "#tabs-1" >first tab</a></li> <li><a href= "#tabs-2" >second tab</a></li> </ul> <div id= "tabs-1" > <p> this
is the first tab</p> </div> <div id= "tabs-2" > <p> this
is the second tab</p> </div> </div> <script> $( function (){ $( "#tabs" ).tabs(); }); </script> </body> </html> |
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。