jQuery判断⼀个元素是否可见的⽅法
本⽂实例讲述了jQuery判断⼀个元素是否可见的⽅法。分享给⼤家供⼤家参考。具体如下:
jQuery 可以很容易地确定⼀个元素是可见的或是隐藏的,然后分别做不同的处理。如:我想根据某 div 是否可见,在按钮上显⽰不同的⽂字和图标。可以这样实现:
⽅法⼀:
$('#para_div button').click(function() {
if($(this).next().is(":visible")) {
//$(this).html('显⽰');
$(this).css({"background":"url(/images/btn_arrow_down.png) no-repeat"});
}
else {
//$(this).html('隐藏');
$(this).css({"background":"url(/images/btn_arrow_up.png) no-repeat"});
jquery在一个元素后追加标签}
$(this).next().slideToggle('fast');
});
⽅法⼆:
$('#para_div button').click(function() {
if($(this).next().css('display') == 'none') {
//$(this).html('隐藏');
 $(this).css({"background":"url(/images/btn_arrow_up.png) no-repeat"});
}
else{
/
/$(this).html('显⽰');
 $(this).css({"background":"url(/images/btn_arrow_down.png) no-repeat"});
}
$(this).next().slideToggle('fast');
});
⽅法三:
$('#para_div button').click(function() {
var $cn = $(this).next();
//$(this).html(($cn.is(":visible")) ? '显⽰' : '隐藏');
(this).css(($cn.is(":visible")) ?
{"background":"url(images/btn_arrow_down.png) no-repeat"} :
{"background":"url(images/btn_arrow_up.png) no-repeat"});
$cn.toggle('fast');
});
希望本⽂所述对⼤家的jQuery程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。