首页 > 代码库 > jquery ui tab标签
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=http://www.mamicode.com/ "css/jquery-ui-1.10.4.min.css" media= "screen" /> <script type= "text/javascript" src=http://www.mamicode.com/ "js/jquery-1.10.2.js" ></script> <script type= "text/javascript" src=http://www.mamicode.com/ "js/jquery-ui-1.10.4.min.js" ></script> </head> <body> <div id= "tabs" > <ul> <li><a href=http://www.mamicode.com/ "#tabs-1" >first tab</a></li> <li><a href=http://www.mamicode.com/ "#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> |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。