jQuery DOM 작업 W...LOGIN

jQuery DOM 작업 WrapAll()

wrap은 단일 DOM 요소 처리를 위한 것입니다. 즉, 컬렉션의 요소를 다른 요소에 래핑하려는 경우, 즉 이러한 처리를 위해 JQuery는 WrapAll 메서드

wrappingElement)를 제공합니다. 컬렉션의 일치하는 요소에 대한 외부 래핑 HTML 구조

예제를 작성해 보겠습니다

아래 코드를 살펴보세요.

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>wrapALL</title>
    <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
</head>
<body>
    <p>php 中文网</p>
    <p>php.cn</p>

    <script>
        $("p").wrapAll("<div></div>");
    </script>
</body>
</html>

위 코드에 표시된 대로 로컬에서 디버깅하고 F12 키를 눌러 볼 수 있습니다. 두 가지를 보세요. p 태그는 div 태그로 둘러싸여 있습니다

다음 섹션
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>wrapALL</title> <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script> </head> <body> <p>php 中文网</p> <p>php.cn</p> <script> $("p").wrapAll("<div></div>"); </script> </body> </html>
코스웨어