function string () {}
pText = new string()
pZahl = new string()
pText = function (wort)
{
var zeichen = "abcdefghijklmnopqrstuvwxyzäöüß- ";
ist_text = true;
pruef_text = wort.toLowerCase();
if (pruef_text==undefined)
ist_text = false;
else
for (n=0; n<pruef_text.length; n++) {
if (zeichen.indexOf(pruef_text.charAt(n)) == -1)
ist_text = false;
}
if (ist_text)
ausgabe = "Alles Okay";
else
ausgabe = "Fehlerhafte Eingabe";
}
pZahl = function (wort) {
ist_zahl=true;
if(wort==undefined)
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 = "Alles Okay";
else
ausgabe = "Fehlerhafte Eingabe";
}
Si deseas colaborar enviando tu artículo, puedes acerlo a esta dirección de correo: admin@jaterli.com Será revisado y publicado tan pronto como nos sea posible. Gracias!!