码迷,mamicode.com
首页 > Web开发 > 详细

JQuery基础三

时间:2015-10-24 12:45:53      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

JQ选项卡实列
<style> #div1 div{ width:200px; height:200px; border:1px red solid; display:none;} .active{ background:red;} </style> <script type="text/javascript" src="jquery-1.10.1.min.js"></script> <script> $(function(){ $(‘#div1‘).find(‘input‘).click(function(){ $(‘#div1‘).find(‘input‘).attr(‘class‘,‘‘); $(‘#div1‘).find(‘div‘).css(‘display‘,‘none‘); $(this).attr(‘class‘,‘active‘); $(‘#div1‘).find(‘div‘).eq( $(this).index() ).css(‘display‘,‘block‘); }); }); </script> </head> <body> <div id="div1"> <input class="active" type="button" value="1" /> <input type="button" value="2" /> <input type="button" value="3" /> <div style="display:block">111111</div> <div>222222</div> <div>333333</div> </div> </body> </html>

 

JQ下的常用方法

  1. addClass()  removeClass()
  2. width()  innerWith()  outerWidth()
  3. insertBefore()  before()
  4. insertAfter()  after()
  5. appendTo()  append()
  6. prependTo()  prepend()
  7. remove()
  8. on()  off()
  9. scrollTop()

 

  • addClass()  removeClass()  添加样式和删除样式
  • width()  innerWith()  outerWidth()

 

JQuery基础三

标签:

原文地址:http://www.cnblogs.com/thinkpad/p/4906511.html

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