이 글에서는 주로 jQuery에서 insertAfter() 메소드의 사용법을 소개합니다. insertAfter() 메소드의 기능과 정의는 물론, 일치하는 요소를 다른 지정된 요소 컬렉션에 삽입하는 사용 기술도 함께 소개합니다. to it
이 글의 예제는 jQuery에서 insertAfter() 메소드의 사용법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
이 방법은 다른 지정된 요소 컬렉션 뒤에 일치하는 요소를 삽입합니다.
insertAfter() 메서드는 insertBefore() 메서드와 반대 효과를 갖습니다.
문법 구조:
코드는 다음과 같습니다:
$(selector).insertAfter(content)
매개변수 목록:
예제 코드:
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>insertAfter() 函数 -脚本之家</title> <style type="text/css"> p{ width:100px; height:100px; border:1px solid red; } p{ width:200px; height:200px; border:1px solid blue; } </style> <script type="text/ javascript " src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $( document ).ready(function(){ $("button").click(function(){ $("p").insertAfter("p"); }) }); </script> </head> <body> <p>我的前面会被插入内容</p> <p>我是p元素</p> <button>点击查看效果</button> </body> </html>
위 코드는 p 요소 아래, 물론 외부 아래에 p 요소를 삽입할 수 있습니다.
위 내용은 jQuery의 insertAfter() 메소드 사용 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!