當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery andSelf( )用法及代碼示例


andSelf()是jQuery中的一種內置方法,用於將先前的元素集添加到當前的元素集中。此方法將以前的DOM樹元素添加到當前集中,並在內部堆棧中維護它們,這些堆棧將負責對匹配的元素集進行更改。文檔對象模型(DOM)是萬維網聯盟的標準。這定義用於訪問DOM樹中的元素。
用法:

andSelf( )(selector);

參數:它不接受任何參數。
返回值:它針對指定的選擇器返回所有添加的元素。
jQuery代碼顯示andSelf()方法的用法方式:

<html> 
  
<head> 
    <script type="text/javascript" 
    src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"> 
    </script> 
    <script> 
        $(document).ready(function() { 
            $("div").find("p").andSelf().addClass("border"); 
        }); 
    </script> 
    <style> 
        p, 
        div { 
            margin: 5px; 
            padding: 5px; 
        } 
          
        .border { 
            border: 2px solid green; 
        } 
          
        .background { 
            background: green; 
        } 
    </style> 
</head> 
  
<body> 
    <div> 
        <p>This is first paragraph.</p> 
        <p>This is second paragraph.</p> 
    </div> 
</body> 
  
</html>

在這裏,邊框將被添加到先前的選擇中,該選擇是一個分隔,然後是第二選擇中的段落。
輸出:



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | andSelf() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。