
06/02/2008, 15:41
|
| | | Fecha de Ingreso: octubre-2006
Mensajes: 48
Antigüedad: 19 años Puntos: 0 | |
| No entiendo mucho sobre prototype ESTOY HACIENDO UN MP3 Y HE VISTO UN CODIGO DE UN MP3 CON AS1 este codigo:
--------------------------------------------------------------------------------------------------
XMLNode.prototype.moveBefore = function(beforeNode){
if (this == beforeNode) return (0);
beforeNode.parentNode.insertBefore( this.cloneNode(true), beforeNode);
this.removeNode();
}
-----------------------------------------------------------------------------------------------
La verdad no entiendo este trozo de codigo .
Si alguien me pueda ayudar sobre prototype? |