https://learn.jquery.com/ 따라하기
Attributes
요소의 속성은 응용 프로그램에 유용한 정보를 포함할 수 있으므로, 이를 가져오고 설정할 수 있는 것이 중요합니다.
The .attr()
method
.attr() 메서드는 getter 및 setter로 작동합니다. setter로 사용될 때, .attr()은 키와 값을 받을 수 있거나, 하나 이상의 키/값 쌍을 포함하는 객체를 받을 수 있습니다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jib e gago sibda</title>
<style>
</style>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<script>
// .attr() as a setter:
$(document).ready(function() {
$("a").attr("href", "https://www.daum.net/");
$("a").attr({
title: "제목이얌",
href: "https://map.kakao.com/"
});
// .attr() as a getter:
$("div").append($("a").attr("href"));
});
</script>
</head>
<body>
<div id="main">
<a>링크얌</a>
</div>
</body>
</html>
'Frontend > jQuery' 카테고리의 다른 글
The jQuery Object (1) | 2024.03.29 |
---|---|
Manipulating Elements(요소 조작) (0) | 2024.03.26 |
Selecting Elements(요소 선택) & Working with Selections (0) | 2024.03.20 |
Avoiding Conflicts with Other Libraries(다른 라이브러리와 충돌 피하기) (0) | 2024.03.20 |