일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- https://minkwon4.tistory.com/161
- 국회의원 & 높으신 분들 어록
- Today
- Total
OPEN between Secret
여러 객체를 하나의 이벤트로 처리하는방법?? 본문
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script type="text/javascript">
<!--
function changeColor(hObj){
//var hObj = document.getElementById('h');
hObj.style.background='#996633';
}
function changeOutColor(hObj){
//var hObj = document.getElementById('h');
hObj.style.background='white';
}
//-->
</script>
</head>
<body>
<h1 onmouseover = "changeColor(this);" onmouseout = "changeOutColor(this)">Hello</h1>
<h1 onmouseover = "changeColor(this);" onmouseout = "changeOutColor(this)">Hello2</h1>
<h1 onmouseover = "changeColor(this);" onmouseout = "changeOutColor(this)">Hello2</h1>
</body>
</html>
//var hObj = document.getElementById('h');
이렇게 하나하나 지정해서 주지 말고
function changeColor(hObj)에서 () 안에 넘어오는걸 인수로 받아서
3개의 객체들을 한번에 이벤트처리를 할수 있는 것이다. 그럴러면 넘겨줄때
onmouseover = "changeColor(this);" onmouseout = "changeOutColor(this)
이런 식으로 this (즉 눌릴떄 '나' 라는걸 알게 하려고)를 주면 된다.
'java > Java script & jQuery' 카테고리의 다른 글
java script (0) | 2014.07.28 |
---|---|
Dom Level2 EventModel (0) | 2014.07.28 |
Java script 에서 객체생성? (0) | 2014.07.28 |
Inner Function (0) | 2014.07.28 |
Java Script 에서 Method's overloading 하기 (0) | 2014.07.28 |