was ist hieran falsch?

Status
Nicht offen für weitere Antworten.
8

8ull23y3

Gast
<html>
<head
<title></titel>
<script LANGUAGE="JavaScript">
document.Form1.Feld1.value = Hallo
</script>
</head>

<body>
<form name="Form1">
<input name="Feld1" type="text">
</form>
</body>
</html>

Wieso schreibt der mir nichts in mein TextFeld?
 

bummerland

Top Contributor
es fehlen die Anführungsstriche.
Code:
 document.Form1.Feld1.value = "Hallo";
 
Status
Nicht offen für weitere Antworten.

Ähnliche Java Themen


Oben