Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
typeof(eingabe.charAt(0)) == "string"
// Init
eingabe = "";
// Nur Zahlen
String.prototype.zahl = function (wort,anzahl) {
ist_zahl = true;
if (wort.length == 0 || wort.length != anzahl) {
ist_zahl = false;
} else {
for (n=0; n<wort.length; n++) {
if (wort.charAt(n)<"0" || wort.charAt(n)>"9") {
ist_zahl = false;
}
}
}
if (ist_zahl) {
ausgabe = "Gültig";
} else {
ausgabe = "Nicht Gültig";
}
}
on (release) {
eingabe.zahl(eingabe,5);
}