Hallo Mathias.
Ich hab hier mal den code, den ich bisher erstellt habe. Ich frage mich im Moment, warum weder das Eingabefeld, noch der "Los"-Button erzeugt werden...
Dank dir für die Hilfe.
Gruß
Simon
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Übung 5 - Javascript</title>
<script type="text/javascript">
function functiondialog(f){
<!-- hier müsste ich ja noch überprüfen ob f auch eine funktion ist. -->
document.getElementById("input").write("<form><input type="text" name="eingabe"><input type="button" name="Los" onclick="quadrat(this.form.eingabe.value)"></form>");
}
function quadrat(x){
ergebnis = x * x;
return ergebnis;
}
</script>
</head>
<body>
<h1>Javascript</h1>
<script type="text/javascript">
functiondialog();
</script>
<div id="input">
<!-- Hier möchte ich das Eingabefeld erzeugen -->
</div>
<div id="output">
<!-- Hier soll nachher das Ergebnis stehen -->
</div>
</body>
</html>