“Przycisk JavaScript OnClick” Kod odpowiedzi

JavaScript onClick

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

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

JavaScript onClick

 document.getElementById("Save").onclick = function ()
    {
     alert("hello");
     //validation code to see State field is mandatory.  
    }
rabbit.sol

Przycisk JavaScript OnClick

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

JavaScript onClick

<script>
  function activateLasers () {
  	//... your code to activate the lasers
	console.log ("Lasers Activated") 
  }
</script>

<button onclick="activateLasers()">
   Activate Lasers
</button>
S3NS4

Odpowiedzi podobne do “Przycisk JavaScript OnClick”

Pytania podobne do “Przycisk JavaScript OnClick”

Więcej pokrewnych odpowiedzi na “Przycisk JavaScript OnClick” w JavaScript

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

Przeglądaj inne języki kodu