Jump to content

AYUDA CON JAVASCRIPT


Recommended Posts

hola cumpas:

 

tengo el siguiente problema, recibo una variable en la función y necesito enviarla concatenada a la página de php y no lo puedo hacer.

 

aca esta mi code:

el alert lo puse pa verificar si envío datos solamente.

 

function muestraF($queCosa){
    alert($queCosa);
        window.open("FichaPersonal.php?r=$queCosa","recogedor","width=500,height=400, top=100,left=100, resizable=no");
    return false;
}

así lo hago pero esta mal si alguien me ayuda

se lo agradeceria.

 

saludos.

Link to comment
Share on other sites

function muestraF(argumento){

alert(argumento);

window.open("FichaPersonal.php?r=argumento","recogedor","width=500,height=400, top=100,left=100, resizable=no");

return false;

}

 

 

ahora para llamar a esa funcion que acabas de crear con un dato en php

 

lo haces aso

 

muestraF(<?=$tuVariablePhp; ?>);

Link to comment
Share on other sites

function muestraF(argumento){

alert(argumento);

window.open("FichaPersonal.php?r=argumento","recogedor","width=500,height=400, top=100,left=100, resizable=no");

return false;

}

 

 

ahora para llamar a esa funcion que acabas de crear con un dato en php

 

lo haces aso

 

muestraF(<?=$tuVariablePhp; ?>);

 

GRACIAS, PERO LO PROBE Y NO FUNCIONA ENVIA SOLO EL NOMBRE DE LA VARIABLE, EN EL EJEMPLO QUE PUSISTE

 

QUEDA ASI LA URL:

http://localhost/FichaPersonal.php?r=argumento

 

Link to comment
Share on other sites

Es que deberia ser asi:

function muestraF(argumento){
alert(argumento);
window.open("FichaPersonal.php?r="+argumento,"recogedor","width=500,height=400, top=100,left=100, resizable=no");
return false;
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...