개요
- .attr()은 요소(element)의 속성(attribute)의 값을 가져오거나 속성을 추가합니다.
문법 1 - 속성의 값 가져오기
.attr( attributeName )
- 예를 들어 아래는 div 요소의 class 속성의 값을 가져옵니다.
$( 'div' ).attr( 'class' );
문법 2 - 속성 추가하기
.attr( attributeName, value )
- 예를 들어 아래는 h1 요소에 title 속성을 추가하고 속성의 값은 Hello로 합니다.
$( 'h1' ).attr( 'title', 'Hello' );
예제 1 - 속성의 값 가져오기
- h1 요소의 class 속성의 값을 가져와서 출력합니다.
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>jQuery</title>
<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
$( document ).ready( function() {
var hClass = $( 'h1' ).attr( 'class' );
$( 'span' ).text( hClass );
} );
</script>
</head>
<body>
<h1 class="hello">Lorem ipsum dolor.</h1>
<p>h1 class value is : <span></span></p>
</body>
</html>
예제 2 - 속성 추가하기
- input 요소에 Input your address를 값으로 하는 placeholder 속성을 추가합니다.
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>jQuery</title>
<style>
input { font-size: 30px; }
</style>
<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
$( document ).ready( function() {
$( 'input' ).attr( 'placeholder', 'Input your address' );
} );
</script>
</head>
<body>
<input type="text">
</body>
</html>
참고