이 글에서는 주로 jQuery에서 WrapAll() 메소드의 사용법을 소개합니다. 매칭 요소의 기능, 정의, 사용법을 예시로 분석합니다. 도움이 필요한 친구들은 참고할 수 있습니다.
이 글에서는 jQuery의 WrapAll() 메소드에 대해 설명합니다. 예. 메소드 사용법. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
이 방법은 일치하는 모든 요소를 단일 요소로 래핑합니다.
이 메소드는 Wrap() 메소드와 기능은 유사하지만 큰 차이점이 있습니다. Wrap() 메소드는 일치하는 각 요소를 한 번씩 일치시킵니다.
구문 1:
일치하는 요소를 지정된 DOM 요소로 래핑합니다.
코드는 다음과 같습니다.
$(selector).wrapAll(elem)
매개변수 목록:
예:
코드는 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="author" content="http://www.jb51.net/" /> <head> <title>脚本之家</title> <style type="text/css"> p { width:200px; height:200px; border:1px solid blue; margin-top :10px; } </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").wrapAll(document.getElementById("content")); }); }); </script> </head> <body> <p>我是个段落</p> <p>我是个段落</p> <p id="content"></p> <button>用p包裹每个段落</button> </body> </html>
구문 2:
일치하는 요소를 html 태그 코드로 래핑합니다.
코드는 다음과 같습니다.
$(selector).wrapAll(html)
매개변수 목록:
예:
코드는 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="author" content="http://www.jb51.net/" /> <head> <title>脚本之家</title> <style type="text/css"> .content { 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").wrapAll("<p class='content'></p>"); }); }); </script> </head> <body> <p>这是个段落</p> <p>这是个段落</p> <button>用p包裹每个段落</button> </body> </html>
위 내용은 jQuery의 WrapAll() 메소드 사용예에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!