0: 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21:
|
<html>
<BODY TEXT="#FFFFFF" LINK="#FFFFFF" VLINK="#999999" ALINK="#00FF00" BGCOLOR="#000000">
<Center>
<script LANGUAGE="JavaScript">
function dialog3() {
var stop ="ende"
stop = prompt("Der String 'ende' beendet diese Schleife.","")
while (stop != "ende") {
stop = prompt("Um diese Schleife zu beenden, geben Sie 'ende' ein.","")
}
alert("Die Schleife ist nun beendet.")
}
//-->
</script>
<form>
<div align="center"><center><p><font face="Times New Roman">
<input TYPE="BUTTON" VALUE=" Hier drücken " onClick="dialog3()"> </font></p>
</center></div>
</form>
</center>
</body>
</html>
|