Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/10/2004, 05:30
masterjail
 
Fecha de Ingreso: octubre-2004
Ubicación: Cork (Irlanda)
Mensajes: 161
Antigüedad: 19 años, 6 meses
Puntos: 1
corregido!

Ya lo tengo!

Al final debe ser así:

Código PHP:
function InputText(nombre,tamanyo,longitud,alineacion,deshabilitado){
var 
HTMLCode "";

HTMLCode += "<input type ='text'";
HTMLCode += " style ='text-align:" alineacion"'";
HTMLCode +=   deshabilitado
HTMLCode += " id ='" nombre "'";
HTMLCode += " name ='" nombre "'";
HTMLCode += " size ='" tamanyo "'"
HTMLCode += " maxlength ='" longitud "'>";

document.write(HTMLCode); 

Para crear una caja deshabilitada:
Código PHP:
<script>InputText("dni","8","8","left","disabled")</script> 
Para crear una caja habilitada:
Código PHP:
<script>InputText("dni","8","8","left","")</script>