:visible

$(':visible') 1.0追加

可視状態になっている要素を選択します。

visibility:hidden または、opacity:0は可視状態とみなされます。 この指定では、要素は透明になるものの領域分の幅と高さは確保されるからです。 また、アニメーション中に要素が隠れることがあっても、アニメーションが 完了するまでは可視状態の扱いになります。

jQuery1.3.2でhidden状態の判定基準が変更されました。(Release:jQuery 1.3.2 - jQuery Wiki)

デモ

可視状態のDIV要素をクリックすると背景が黄色になります。

<!DOCTYPE html>
<html>
<head>
<style>
  div { width:50px; height:40px; margin:5px; border:3px outset green; float:left; }
  .starthidden { display:none; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<button>hidden要素を表示</button><!-- (表示後もクリックイベントは適用外) -->
<div></div>
<div class="starthidden"></div>
<div></div>
<div></div>
<div style="display:none;"></div>
<script>
  $("div:visible").click(function () {
    $(this).css("background", "yellow");
  });
  $("button").click(function () {
    $("div:hidden").show("fast");
  });
</script>
</body>
</html>

 Back to top

© 2010 - 2017 STUDIO KINGDOM