码迷,mamicode.com
首页 > 其他好文 > 详细

JQ实现点击两个按钮切换内容

时间:2016-07-12 12:11:22      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

 

<!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>

  

JQ实现点击两个按钮切换内容

标签:

原文地址:http://www.cnblogs.com/zxg-6/p/5662942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!