El div no tiene evento de onLoad
Intenta con esto
Código Javascript
:
Ver original/*Definiendo la clase */
var ClaseDePrueva = function (array1,array2){
/*contructor*/
this.texto1 = array1;
this.NombreID = document.getElementById(array2);
/* Metodo */
this.ImprimirTexto = function(){
this.NombreID.innerHTML = this.texto1;
}
}
/*Inicializo el objeto y le paso las variables para el constructor! */
window.onload = function(){
var ObjetoDePrueva = new ClaseDePrueva('ArrayDeprueva1' , 'Mydiv1');
ObjetoDePrueva.ImprimirTexto();
}