<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Form Test</title>
<script type="text/javascript">
function Check (Taste, zwei)
{
if (typeof (Taste) == 'object')
alert ('Netscape: ' + Taste.which)
else
if (typeof (event) == 'object')
alert ('Microsoft: ' + event.keyCode)
else
alert ('nix?');
alert(zwei);
return false;
}
window.onload=function ()
{
with (document)
{
Formular.Eingabe.focus ();
}
document.getElementById("Eingabe").onkeypress=function(e){Check(e, 'zwei');};
}
</script>
</head>
<body>
<form name="Formular" action="">
<input id="Eingabe" size=20 >
</form>
</body>
</html>function BilderTitel() {
var bilder=document.images;
for (var i=0; i<bilder.length; i++) {
bilder[i].onclick=function () {
alert(this.title);
}
}
window.onload=BilderTitel;
Wie erstellt man eine Webseite / Homepage (html)?
derpfleger 26.01.2008 - 19492 Hits - 5 Antworten
CGI Script für mein HTML Formular?!
actofjustice 24.12.2007 - 106 Hits - 1 Antwort
Daten aus HTML-Formular (lokal) in Datei
paulo87 03.04.2008 - 88 Hits - 13 Antworten
Auswertung von HTML-Formular als .txt-Datei speichern
Computerfreaki 09.04.2008 - 41 Hits - 2 Antworten
html/php formular daten merken
manwe332 07.09.2008 - 21 Hits - 4 Antworten