Prototype 노트 (8)------Event 확장

673 단어 prototype
observe(element, name, observer, useCapture) static element: object or id, name: event name (like 'click', 'load', etc), observer: function to handle the event, useCapture: if true, handles the event in the capture phase and if false in the bubbling phase. 대상의 어떤 이벤트에 처리 함수를 추가합니다.
<script>
Event.observe(window, 'load', showMessage, false);
function showMessage() {
alert('Page loaded.');
}
</script>
<script>
Event.observe($(inc_SchoolName[mark]), 'focus', function() {shows(mark)});

</script>

좋은 웹페이지 즐겨찾기