jquery Children() メソッド


  翻訳結果:

children

English [ˈtʃɪldrən] US [ˈtʃɪldrən]

n. 子供; 子供 (child の複数形); 膝; 子供

jquery Children() メソッド構文

関数: children() メソッドは、選択された要素のすべての直接の子要素を返します。

# 構文: .children(selector)

パラメータ:

# #ParameterDescriptionselector 一致する要素のセレクター式を含む文字列値。

jquery Children() メソッド例

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<style>
  body { font-size:16px; font-weight:bolder; }
  p { margin:5px 0; }
</style>
</head>
<body>
  <div>
    <span>Hello</span>
    <p class="selected">Hello Again</p>
    <div class="selected">And Again</div>

    <p>And One Last Time</p>
  </div>
<script>$("div").children(".selected").css("color", "blue");</script>
</body>
</html>
インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します

人気のおすすめ