10.offsetY 설명: 이벤트를 트리거한 개체를 기준으로 마우스 위치의 수직 좌표를 확인합니다.
구문: event.offsetY
11.propertyName 설명: 요소의 변경된 속성 이름을 설정하거나 반환합니다.
구문: event.propertyName [ = sProperty ]
가능한 값: sProperty는 이벤트 중에 변경된 이벤트를 트리거한 요소를 지정하거나 반환하는 문자열입니다. 부동산 이름. 이 속성은 읽고 쓸 수 있습니다. 기본값이 없습니다.
참고: onpropertychange 이벤트를 사용하여 propertyName 값을 가져올 수 있습니다. <script>... <BR>function cancelLink() ...{ <BR> if (window.event.srcElement.tagName == "A" && window.event.shiftKey) <BR> window.event.returnValue = false; <BR>} <BR></script>예: <script> <BR>function checkCancel() ...{ <BR> if (window.event.shiftKey) <BR> window.event.cancelBubble = true; <BR>} <BR>function showSrc() ...{ <BR> if (window.event.srcElement.tagName == "IMG") <BR> alert(window.event.srcElement.src); <BR>} <BR></script>다음 예에서는 onpropertychange 이벤트를 사용하여 propertyName 값을 표시하는 대화 상자를 팝업합니다.
<script>... <BR>function changeProp()...{ <BR> btnProp.value = "This is the new VALUE"; <BR>} <br><br>function changeCSSProp()...{ <BR> btnStyleProp.style.backgroundColor = "aqua"; <BR>} <BR></script>
The event object property propertyName is used here to return which property has been altered.
VALUE="Click to change the VALUE property of this button" onpropertychange='alert(event.propertyName+" property has changed value")'> onclick="changeCSSProp()" VALUE="Click to change the CSS backgroundColor property of this button" onpropertychange='alert(event.propertyName+" property has changed value")'>