and

英[ənd] 美[ənd, ən,ænd]

conj.And; and, with; so, then; したがって

self

英[self] 美[sɛlf]

n.Oneself;oneself;nature;self-interest

adj.unified ; 純粋; 単一

vt. 自家受精する; 近親交配を引き起こす

vi. 自家受精する

jquery andSelf()方法 構文

関数: add() メソッドは、スタック内の以前の要素セットを現在のセットに追加します。

構文: .andSelf()

jquery andSelf()方法 例

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<style>
  p, div { margin:5px; padding:5px; }
  .border { border: 2px solid red; }
  .background { background:yellow; }
</style>
</head>
<body>
  <div>
    <p>First Paragraph</p>
    <p>Second Paragraph</p>
  </div>
<script>
    $("div").find("p").andSelf().addClass("border");
    $("div").find("p").addClass("background");
</script>
</body>
</html>
インスタンスの実行 »

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