“zdarzenie DOM” Kod odpowiedzi

zdarzenie DOM

/*
  DOM [Events]
  - Use Events On HTML
  - Use Events On JS
  --- onclick
  --- oncontextmenu
  --- onmouseenter
  --- onmouseleave

  --- onload
  --- onscroll
  --- onresize

  --- onfocus
  --- onblur
  --- onsubmit
*/

let myBtn = document.getElementById("btn");

myBtn.onmouseleave = function () {
  console.log("Clicked");
};

window.onresize = function () {
  console.log("Scroll");
};
Proud Peacock

Zdarzenia html DOM

The original HTML DOM component's events

https://www.w3schools.com/jsref/dom_obj_event.asp
Joseph Benamor

Wydarzenie JavaScript

// An event is triggered when a user clicks on the #button element,
// which then sets the #button element's background-color to blue. 
$('#button').on('click', event => {
  $(event.currentTarget).css('background-color', 'blue');  
});
Douglas Stemple

Odpowiedzi podobne do “zdarzenie DOM”

Pytania podobne do “zdarzenie DOM”

Więcej pokrewnych odpowiedzi na “zdarzenie DOM” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu