「jquery入門」css(“visibility”)で要素の表示を判定する

1.$(“.item").each(function()
{
if ($(this).css(“visibility") == “hidden")
{
// 非表示処理
}
else
{
// 表示処理
}
})

2.is(':visible’)
if ($('#foo’).is(':visible’)) {
// 表示処理
} else {
// 非表示処理
}

3.is(':hidden’)
if ($('#foo’).is(':hidden’)) {
// 非表示処理
} else {
// 表示処理
}

jQuery

Posted by arkgame