2017-06-07 7 views
-1

Je dois passer une variable à un formulaire depuis Edge Animate. J'ai l'instruction suivante:Passage d'une variable à un formulaire dans Edge Animate

sym.$("form").append('<iframe width="100%" height="100%" src="login_PRA.php?v_id="vidn frameborder="0" scrolling="no"></iframe>'); 

VIDN est une variable mais utilisée comme je l'ai fait est passé comme valeur quand je besoin d'accéder à la valeur contenue par la variable VIDN -je obtenir « VIDN » . S'il vous plaît pouvez-vous m'aider à écrire correctement l'instruction?

+0

Décomposer la question en petits problèmes. Pour l'instant, il y a trop de problèmes pour nous aider. – evolutionxbox

Répondre

0
I've found the correct solution and I had already posted it yesterday and I don't know why I can't see it here. the correct solution is: sym.$("form").append('<iframe width="100%" height="100%" src="login_PRA.php?v_id=' + vidn + '" frameborder="0" scrolling="no"></iframe>');