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

jQuery显示和隐藏 常用的状态判断方法

时间:2014-12-12 18:30:55      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   sp   on   log   bs   html   

显示:show()  display:block;

隐藏:hide()   display:none;

当显示和隐藏切换的时候,需要判断此刻是显示还是隐藏,那判断条件常用以下几种方法:

1.if(thisNode.is(‘:hidden‘)){......}else{.......}

2.首先给thisNode的Dom元素加class标识,例如改标识为class="showFlag",判断如下

  if(thisNode.hasClass(‘showFlag‘)){.......}else{......}

 同样的道理,也可以判断thisNode的其他内容,例如子元素的个数,text内容等等,这样根据具体需求来说。

 http://www.cnblogs.com/mabelstyle/archive/2013/02/17/2914048.html

jQuery显示和隐藏 常用的状态判断方法

标签:style   blog   http   ar   sp   on   log   bs   html   

原文地址:http://www.cnblogs.com/kungfupanda/p/4111315.html

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