标签:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <script src="../js/jquery-1.10.2.min.js" type="text/javascript"></script> <script src="../js/jquery-ui.min.js" type="text/javascript"></script> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title></title> <style type="text/css"> li{list-style: none;} </style> <script type="text/javascript"> $(function(){ $( "#tabs" ).tabs(); }) </script> </head> <body> <div id="tabs"> <ul> <li><a href="#jtxw">A</a></li> <li><a href="#dwxw">B</a></li> </ul> <div id="jtxw"> <p>我是A内容</p> </div> <div id="dwxw"> <p>我是B内容</p> </div> </div> </body> </html>
标签:
原文地址:http://www.cnblogs.com/zxg-6/p/5662942.html