“przycisk HTML OnClick” Kod odpowiedzi

Button JavaScript OnClick

document.getElementById("myBtn").addEventListener("click", function() {
  alert("Hello World!");
});
Batman

Jak dodać wydarzenie OnClick w JavaScript

var element = document.getElementById("elem");
element.onclick = function(event) {
  console.log(event);
}
TC5550

Onclick a Tag

<a href='http://www.google.com' onclick='return check()'>check</a>

<script type='text/javascript'>
function check() {
    return false;
}
</script>
Xenophobic Xenomorph

Button JavaScript OnClick

// Here you can use getElementById 
// or getElementByClassName or getElementByTagName...
// Example #1
document.getElementById("button").onclick = function() {
	alert("Hello World!");
}

// Example #2
let obj = document.getElementsByClassName('button');
obj.addEventListener("click", function() {
    // your code here...
});

// Example #3 (getting attributes)
let obj = document.getElementById("button")
obj.onclick = function() {
  	obj.style.display = "none";
	// or:
  	// obj.style = "display: none; color: #fff"
}
Modern Marten

przycisk JavaScript

<button onclick="Function()">Text</button>
Defeated Dugong

Przycisk JavaScript OnClick

var button = document.querySelector('button');
button.onclick = function() {
  //do stuff
}
Plain Penguin

Odpowiedzi podobne do “przycisk HTML OnClick”

Pytania podobne do “przycisk HTML OnClick”

Więcej pokrewnych odpowiedzi na “przycisk HTML OnClick” w HTML

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

Przeglądaj inne języki kodu