Forum de discussion
Forum « Programmation Javascript » (archives)
target et iframe
Envoyé: 10 mars 2004, 1h06 par mikedimoi
Etant débutant, j'ai reussi à me trouver un script.
Reste maintenant un problème...
Le voici:
script language="javascript">
function fMike()
{
//------------------------------
// variables declaration
var Path='monsite.dyndns.org';
var IFName='sandy';
var Home='page2.htm';
var Frm=document.myform;
var Login=Frm.LOGIN.value;
var Pwd=Frm.PASSWORD.value;
//------------------------------
if (document.getElementById)
{
var iframe=document.getElementById(IFName);
iframe.src='ftp://'+Login+':'+Pwd+'@'+Path+'/'+Home;
}
}</script>
Dans le body:
<iframe name="sandy" style="position: absolute; left: 404; top: 608; width:154px; height:129px"
target="_top" src="sandy.htm">
Votre navigateur ne prend pas en charge les cadres insérés ou est actuellement configuré pour ne pas les afficher.
</iframe>
Existerait il une commande comme en html (target="top") afin que ma page s'ouvre en grand dans la même fenêtre?
Pourrai-je rediriger les gens vers www.un_site.com dans le cas où le mot de passe ou le login ne soit pas bon?
Merci de vos reponses
Réponses
|