1. 程式人生 > >javascript的三種事件模型

javascript的三種事件模型

*內聯模型,寫在標籤裡,事件作為標籤的屬性存在,例:*
<button onclick="alert('hello')">點選</button>
*指令碼模型:*
<button>點選</button>
<script>
window.onload=function(){
    var btn=document.getElementByTagName('button');
    btn.onclick=function(){
        alert("hello");
    }   
}
</script>

DOM2模型??????????????????????????