7.事件源.js 291 B

123456789101112
  1. // 事件源 事件的源头
  2. var box1 = document.getElementById("box1");
  3. var box2 = document.getElementById("box2");
  4. box1.onclick = function(event){
  5. console.log(event.target,'box1');
  6. }
  7. box2.onclick = function(event){
  8. console.log(event.target,'box2');
  9. event.stopPropagation();
  10. }