Recien estoy comenzando a trabajar con json asi que tengo unas dudas basicas, tengo el siguiente codigo:
window.onload=function() {
tablero.dibujar(5,2);
tablero.probando();
tablero.Activar();
//tablero.interfaz();
//tablero.setAttribute("style","bgcolor:red");
}
var tablero = {
"dibujar":function(filas,columnas) {
var tabla = document.createElement("table");
for (var i=0; i<filas; i++) {
var filas = document.createElement("tr");
tabla.appendChild(filas);
for (var j=0; j<columnas; j++) {
var columnas = document.createElement("td");
var text=document.createTextNode(i+"--"+j);
columnas.appendChild(text);
filas.appendChild(columnas);
}
}
tabla.appendChild(filas);
document.body.appendChild(tabla);
},
"Activar":function() {
alert("activar");
this.onmouseover=function() { this.setAttribute("bgcolor","red"); };
this.onmouseout=function() { this.removeAttribute("bgcolor"); };
this.onclick=function() { alert("ele")}
},
"interfaz": function() {
this.setAttribute("bgcolor","red");
},
"probando": function() {alert("hoa");}
};
mi duda es la siguiente que esta mal en las funciones "Activar" e "Interfza" que no logron que anden. ??? y como logro acceder a los elementos de la tabla??
gracias!