● this 속성
페이지 정보
본문
<script>
function change(obj, size, color){
obj.style.color = color;
obj.style.fontSize = size;
}
</script>
<h3>this 이용</h3>
<hr>
<button onclick="change(this, '30px', 'red')">버튼1</button>
<button onclick="change(this, '40px', 'blue')">버튼2</button>
<button onclick="change(this, '45px', 'orange')">버튼3</button>
==== tip ====
this는 태그 button 객체 자신을 가리킨다.
추천0 비추천0
- 이전글● document객체의 프로퍼티 21.07.18
- 다음글● document.getElementById().innerHTML 21.07.18
댓글목록
등록된 댓글이 없습니다.