HOME > > > > >

.andself()

戻り値

jQuery
jQueryオブジェクト

現在対象となっているjQueryオブジェクトのDOM要素をその前のjQueryオブジェクトに追加したものを返す。

サンプル

実行結果

Javascript

  1. $('.jqTest1 :button').on('click', function(e){
  2.     $('.jqTest1 div').css({
  3.         padding: 20,
  4.         background: '#E5E5E5'
  5.     }).find('p').css({
  6.         background: '#99FFFF'
  7.     }).andSelf().css({
  8.         border: '3px solid #555555'
  9.     });
  10. });

HTML

  1. <div class="jqTest1">
  2.     <div class="npb">
  3.         <p></p>
  4.         <p></p>
  5.         <p></p>
  6.         <p></p>
  7.         <p></p>
  8.         <p></p>
  9.     </div>
  10.  
  11.     <button>execute</button>
  12. </div>