SeouliteLab

jQuery의 .removeAttr() 메서드: 속성 제거하기 본문

프로그래밍

jQuery의 .removeAttr() 메서드: 속성 제거하기

Seoulite Lab 2024. 3. 27. 10:55

jQuery의 .removeAttr() 메서드는 선택한 요소에서 지정된 속성(attribute)을 제거합니다. 이를 통해 동적으로 요소의 속성을 변경하거나 초기화할 수 있습니다.

예제 1: 속성 제거하기

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .removeAttr() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
  // 속성 제거하기 예제
  $('#link1').removeAttr('href');
});
</script>
</head>
<body>

<a href="https://www.example.com" id="link1">링크</a>

</body>
</html>
<!-- 출력 결과 -->
<!-- <a id="link1">링크</a> -->

예제 2: 다중 속성 제거하기

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .removeAttr() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
  // 다중 속성 제거하기 예제
  $('#input2').removeAttr('disabled placeholder');
});
</script>
</head>
<body>

<input type="text" id="input2" disabled placeholder="입력하세요">

</body>
</html>
<!-- 출력 결과 -->
<!-- <input type="text" id="input2"> -->

예제 3: 반복문을 이용한 속성 제거하기

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .removeAttr() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
  // 반복문을 이용한 속성 제거하기 예제
  $('.item').removeAttr('data-info');
});
</script>
</head>
<body>

<div class="item" data-info="정보1">아이템 1</div>
<div class="item" data-info="정보2">아이템 2</div>
<div class="item" data-info="정보3">아이템 3</div>

</body>
</html>
<!-- 출력 결과 -->
<!-- <div class="item">아이템 1</div> -->
<!-- <div class="item">아이템 2</div> -->
<!-- <div class="item">아이템 3</div> -->