SeouliteLab

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

프로그래밍

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

Seoulite Lab 2024. 3. 27. 10:58

jQuery의 .removeProp() 메서드는 선택한 요소의 프로퍼티(property)를 제거합니다. 이 메서드는 주로 jQuery로 추가한 프로퍼티를 제거할 때 사용됩니다. 하지만 HTML 속성(attribute)를 제거하는 데에는 .removeAttr() 메서드를 사용해야 합니다.

예제 1: 프로퍼티 제거하기

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

<input type="checkbox" id="checkbox1" checked>

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

예제 2: 다중 프로퍼티 제거하기

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

<input type="text" id="input2" disabled autocomplete="off">

</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 .removeProp() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
  // 조건부로 프로퍼티 제거하기 예제
  var condition = true;
  if (condition) {
    $('#checkbox3').removeProp('checked');
  }
});
</script>
</head>
<body>

<input type="checkbox" id="checkbox3" checked>

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