Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/03/2012, 20:27
MARCASTELEON
 
Fecha de Ingreso: octubre-2010
Mensajes: 107
Antigüedad: 14 años, 1 mes
Puntos: 14
Respuesta: Cómo pasar una variable Javascript a variable HTML en el BODY a usarse con

Hola,

En la funcion "showfile()" puedes hacer que se ponga "filename" como valor de los parametros html que necesitas, esto, podria realizarse de la siguiente manera:

Código Javascript:
Ver original
  1. function showfile() {
  2. var pathname = location.pathname;
  3. var filename = pathname.substr(pathname.lastIndexOf("\\")+1,pathn ame.length);
  4.  
  5. document.getElementById("idDelParam").setAttribute("value",filename);
  6.  
  7. document.getElementById("idDelEmbed").setAttribute("FlashVars",filename);
  8.  
  9.  
  10. }

El metodo setAttribute nos permite crear/modificar un parametro de un elemento html.
Debes asignarle un id al param y al embed, y reemplazar a idDelParam y idDelEmbed, respectivamente.