O'Reilly eBook
-
- Weitere Informationen zu diesem Produkt:
Inhaltsverzeichnis | Index | Kolophon | Errata | Ihr Feedback | Beispiele zum Download |
- Weitere Informationen zu diesem Produkt:
JETZT ONLINE BESTELLEN
Deutsche Übersetzung von Thomas Demmig
1. Auflage März 2007
ISBN 978-3-89721-773-7
384 Seiten, PDF ca.3.8 MB
EUR10.00
Gedruckte Ausgabe:
Weitere Informationen zu diesem Produkt
Inhaltsverzeichnis | Index | Kolophon | Errata | Ihr Feedback | Beispiele zum Download |
Errata
Der Beispielcode auf S. 7 (Beispiel 1-1) ist in der ersten Auflage
des Buchs nicht vollständig. Der korrekte Code muss wie folgt lauten:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Beispiel 1-1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
function hello() {
var dt = Date();
// sag Hallo
var msg = 'Hallo Welt! Heute ist ' + dt;
alert(msg);
}
</script>
</head>
<body onload="hello();">
</body>
</html>
Zurück zu Einführung in JavaScript (eBook-Bundle: PDF + EPUB)
