troublemaker,
Сообщение от troublemaker
|
document.write
|
неиспользуйте это пока ненаучитесь программировать и особенно не вставляйте это в
Сообщение от troublemaker
|
onLoad
|
когда научитесь document.write вам тоже редко где понадобится.
читайте
учебник
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.bl{background:#BFDEFF;color:#000}
.al{background:#00C;color:#FFF}
</style>
</head>
<body>
<script>
var col = 10,
row = 10,
html = "",
html = html + "<h2 align=center>Таблица умножения</h2>",
html = html + "<table align=center border=1>";
for (i = 0; i <= row; i++) {
html += "<tr>";
for (j = 0; j <= col; j++) {var cl = i && j ? i * j % 2 ? "" : "bl" : "al";
html += "<td class=" + cl + " >" + (i || j ? (i || 1) * (j || 1) : "") + "</td>";}
html += "</tr>"
}
var html = html + "</table>",
div = document.createElement("div");
div.innerHTML = html;
document.body.appendChild(div);
</script>
</body>
</html>