Wie erzeugt man in HTML Javascript einen Bestätigungsdialog
vor einem Löschvorgang?
Lösung: mit javascript confirm
//<
Question >
var answer = confirm("Delete
this Note ?");
if (answer
!= true) {return;}
//</
Question >
|
Dann erscheint ein Dialog mit der Server-Bezeichnung und
dem OK-Abbrechen Buttons
Anwendung: Bestätigungsdialog vor dem Löschen eines
Datensatzes
function Delete_Record() {
//----< Delete Record() >----
//< Question >
var answer = confirm("Delete this Note
?");
if (answer != true) {return;}
//</ Question >
//< Change Action >
$("#frmEdit").attr("action", "/Notes/Delete/" + IDNote);
$("#frmEdit").attr("method", "post");
//</ Change Action >
//< Send Form >
$("#frmEdit").submit();
//</ Send Form >
//----<
Delete Record() >----
}
|