Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/02/2006, 13:30
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 4 meses
Puntos: 381
Buenas

prueba con este ejemplo a ver si te orienta

Código:
<script type="text/javascript">
var i = 0
function hola(){ 
	i++
	elem=document.createElement('input')
	elem.type = "button"
	elem.value = "borrar"
	eval('elem.onclick= function(){fun2(' + i + ')}')
	document.body.appendChild(elem)
}  
function fun2(v){
	alert(v)
}
</script>
</head>
<body>
<a href="#" onclick="hola();return false">hola</a>
</body>
Un saludo