同一个标签绑定多个事件,优先级

【同一个标签绑定多个事件,优先级】a、 确认
b、 var btn = document.getElementById("test3");
btn.onmouseup = function(){
alert('ss')
}
b的优先级大于a

    推荐阅读