lo hice asi, pero tengo el problema que no me reconoce como variable 'exe'. El problema es que me gustaría poder tenerlo en forma dinamica para poder enviar los valores de cada campo a una tabla, pero no me reconoce el susodicho...
Código PHP:
<html>
<head>
<script type="text/javascript">
var boton = '<a href="#" onclick="nueva_categoria(this);return false;">AÑADIR
SUBCATEGORIA</a> [COLOR="Blue"]<INPUT type="text" name="nombre" value="">[/COLOR]';
[B][COLOR="Red"]var exe [/COLOR][/B]= document.createElement("input").innerText ="" ;
function nueva_categoria(aqui){
var contenedor = aqui.parentNode.getElementsByTagName("ul");
if(contenedor.length == 0){
aqui.parentNode.innerHTML += "<ul><li>Una hija " + boton + "</li></ul>";
} else {
contenedor[0].innerHTML += "<li>Una hija " + boton + [B][COLOR="red"]exe[/COLOR][/B] + "</li>" ;
}
}
</script>
</head>
<body>
<div id="tree">
<a href="#" onclick="nueva_categoria(this);return false;">AÑADIR SUBCATEGORIA</a>
</div>
</body>
</html>