JQuery $(element)

2024년 04월 05일
JAVASCRIPT & Jquery
0 0

기존 DOM 요소 래핑
var myElement = document.getElementById(“myElement”);
var $myElement = $(myElement); // Wraps the existing DOM element into a jQuery object

새 요소 만들기
var $newDiv = $(“<div>”); // Creates a new element

속성을 사용하여 새 요소 생성
var $newLink = $(“<a>”, { href: “https://example.com”, text: “Click me” });
// Creates a new <a> element with href attribute and text content

CSS 클래스를 사용하여 새 요소 만들기
var $newButton = $(“<button>”).addClass(“btn btn-primary”);
// Creates a new <button> element with CSS classes

HTML 콘텐츠로 새 요소 만들기
var $newParagraph = $(“<p>”).html(“This is a new paragraph.”);
// Creates a new <p> element with HTML content

기존 요소 복제
var $cloneElement = $(“#existingElement”).clone();
// Clones an existing element and wraps it into a jQuery object

이벤트 핸들러를 사용하여 새 요소 생성
var $newButton = $(“<button>”).text(“Click me”).click(function() { alert(“Button clicked!”); });
// Creates a new <button> element with text content and a click event handler

데이터 속성을 사용하여 새 요소 생성
var $newDiv = $(“<div>”, { id: “myNewDiv”, “data-custom”: “value” });
// Creates a new <div> element with id attribute and data-custom attribute

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다