“JS alert tak nie” Kod odpowiedzi

JavaScript Potwierdź tak nie

var proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
  //proceed
} else {
  //don't proceed
}
Scriper

JS alert tak nie

if (confirm('Are you sure you want to donate to Andrew Hyder?')) {
  // true (paypal.me/andrewdhyder)
} else {
  // false
}
Poised Penguin

Opcja JavaScript Tak/Nie wyskakujące okienko

if (confirm('Are you sure you want to save this thing into the database?')) {
  // Save it!
  console.log('Thing was saved to the database.');
} else {
  // Do nothing!
  console.log('Thing was not saved to the database.');
}
Charming Cicada

JavaScript monit tak/nie

var answer = window.confirm("Save data?");
if (answer) {
    //some code
}
else {
    //some code
}
Blushing Bug

Jak wziąć tak lub nie w JS

ans = confirm('continue ?');
//returns a boolean response
if (ans){
	//condition returns true...
}
else(){
	//condition returns false...
}
Inquisitive Iguana

JavaScript Potwierdź tak nie

let proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
  //proceed
} else {
  //don't proceed
}
effset

Odpowiedzi podobne do “JS alert tak nie”

Pytania podobne do “JS alert tak nie”

Więcej pokrewnych odpowiedzi na “JS alert tak nie” w JavaScript

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

Przeglądaj inne języki kodu