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


JQuery before()用法及代碼示例


jQuery中的before()方法用於在所選元素之前添加內容。

用法:

$(selector).before( content, function(index) )

參數:此方法接受上述和以下所述的兩個參數:


  • content:此參數保存要在元素之前插入的內容。內容的可能值可以是HTML元素,DOM元素,jQuery元素。
  • function(index):它是可選參數,用於指定一個函數,該函數返回要插入的內容,然後元素和索引返回元素的索引位置。

範例1:本示例將內容插入到元素之前。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        jQuery before() Method 
    </title> 
      
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
      
    <!-- Script to insert element before button element -->
    <script> 
        $(document).ready(function() { 
            $("button").click(function() { 
                $("button").before("<p>GeeksforGeeks:" 
                + " A computer science portal</p>"); 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <button>Click Here to Insert element before button</button> 
</body> 
  
</html>     

在單擊按鈕之前:

單擊按鈕後:

範例2:本示例在指定元素之前插入內容。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        jQuery before() Method 
    </title> 
      
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
      
    <!-- Script to add content before the element -->
    <script> 
        $(document).ready(function(){ 
            $("button").click(function(){ 
                $("span").before("<span>GeeksforGeeks: </span>"); 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <span>A computer science portal for geek</span><br> 
      
    <span>A computer science portal for geek</span><br> 
      
    <span>A computer science portal for geek</span><br> 
      
    <button>Click to insert</button> 
</body> 
  
</html>

之前單擊按鈕:

單擊按鈕後:



相關用法


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