SeouliteLab

jQuery의 .prop() 메서드: 속성 조작하기 본문

프로그래밍

jQuery의 .prop() 메서드: 속성 조작하기

Seoulite Lab 2024. 3. 27. 10:54

jQuery의 .prop() 메서드는 선택한 요소의 속성(property)을 가져오거나 설정합니다. HTML 요소의 기본 속성(property)을 조작할 때 사용됩니다.

예제 1: 속성 가져오기

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery .prop() 메서드 예제</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
  // 속성 가져오기 예제
  var checked = $('#checkbox1').prop('checked');
  console.log('체크 여부:', checked); // 출력 결과: 체크 여부: true
});
</script>
</head>
<body>

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

</body>
</html>
<!-- 출력 결과 -->
<!-- 체크 여부: true -->

예제 2: 속성 설정하기

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

<input type="checkbox" id="checkbox2">

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

예제 3: 다중 속성 설정하기

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

<input type="text" id="input3">

</body>
</html>
<!-- 출력 결과 -->
<!-- <input type="text" id="input3" disabled placeholder="입력하세요"> -->