123456789101112131415161718192021222324 |
- var table = document.createElement("table");
- table.setAttribute("cellpadding","15");
- table.setAttribute("border", "1");
- table.style.borderCollapse = "collapse";
- table.style.borderColor = "#ccc";
- document.body.appendChild(table);
- for (var i = 0; i < 9; i++) {
- table.appendChild(document.createElement("tr"));
- for (var j = 0; j < 9; j++) {
- table.children[i].appendChild(document.createElement("td"));
- table.children[i].children[j].innerHTML = (i + 1) * (j + 1);
- table.children[i].children[j].onmouseover = colorFuncOn;
- table.children[i].children[j].onmouseout = colorFuncOut;
- }
- }
- function colorFuncOn(){
- this.style.backgroundColor = "#ccc";
- }
- function colorFuncOut(){
- this.style.backgroundColor = "#fff";
- }
|