propriété d'un bouton

Répondre
sparh
le 18/07/2006 à 20:22
sparh
salut;
je voudrai qu'un bouton permette d'ouvrir une popup!
J'y arrive pour un lien classique mais pas pour un bouton?
Voilà mon code:
var newWin = null;
function closeWin(){
if (newWin != null){
if(!newWin.closed)
newWin.close();
}
}

function popUp(strURL,strType,strHeight,strWidth) {
closeWin();
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
}

<form name"record" action="record.php" target="popUp" method="post"/>
<input type="hidden" name="Jeu" value="<?php echo $row['jeux'] ?>"/>
<input name="submit" type="submit" value="Enregistrez votre record" oncsubmit="popUp(record.php,'fixed',75,75,'scrollbars=0,location=0,status=0,resizable=0,toolbar=0,menubar=0');return false;"/>
</form>

Pour un bouton ca marche pas!!
<a href="<?php echo $row['adresse'] ?>" onclick="popUp(this.href,'fixed',400,608);return false;" title="<?php echo $row['jeux'] ?>">Cliquez jouer  &agrave; <?php echo $row['jeux'] ?> en plus grand</a></p>
Pour un lien classique, ca marche!!
Voilà si vous avez des idées pour m'aider?
LA GLOBULE
le 19/07/2006 à 00:44
LA GLOBULE
Je vois pas l'interet du formulaire en fait : pourquoi ne pas passer la valeur du bouton caché directement en GET avec un record.php?Jeu=<?php echo $row['jeux'] ?> ?

Comme ça, avec un onclick, c'est torché :) (si tu veux vraiment le faire en POST, ca va etre un peu plus chiant)
Répondre

Ecrire un message

Votre message vient d'être créé avec succès.
LoadingChargement en cours