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


JQuery insertAfter()用法及代碼示例


insertAfter()是jQuery中的內置方法,用於在指定元素後插入一些HTML內容。每次出現指定元素後,將插入HTML內容。
用法:

$(content).insertAfter(target)

“content”是要在指定目標之後插入的HTML內容。
參數:它采用參數“target”作為目標,之後將插入內容。
返回值:它不返回任何值。

jQuery代碼顯示insertAfter()方法的用法方式:

代碼1:
<!DOCTYPE html> 
<html> 
  
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        $(document).ready(function() { 
            $("div").click(function() { 
                // insertAfter 
                $("<p>You should follow GeeksForGeeks</p>").insertAfter("p"); 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
  
    <p>To learn jQuery : </p> 
  
    <div>Click here to complete</div> 
  
</body> 
  
</html>

輸出:
在點擊div內容之前,


To learn jQuery :
Click here to complete

點擊div內容後,

To learn jQuery :
You should follow GeeksForGeeks
Click here to complete

代碼2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        $(document).ready(function() { 
            $("div").click(function() { 
                // insertAfter 
                $("<p>You should follow GeeksForGeeks</p>").insertAfter("p"); 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
  
    <p>To learn jQuery : </p> 
  
    <p> To learn coding : </p> 
  
    <div>Click here to complete</div> 
  
</body> 
  
</html>

輸出:
在點擊div內容之前,

To learn jQuery :
To learn coding :
Click here to complete

點擊div內容後,

To learn jQuery :
You should follow GeeksForGeeks
To learn coding :
You should follow GeeksForGeeks
Click here to complete


相關用法


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