Meerdere popups
PDA_ - 12/07/2009 11:28
|
Nieuw lid |
|
Ik wil dat er meerdere popups openen bij het openen van me site.
Ik heb nu dat er maar 1 word geopend.
Dit is daarvan de code:
Het head gedeelte=
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp() {
props=window.open('http://ds1.nl/c/?wi=77565&ws=&si=1215&li=82944', 'poppage', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=1440, height=900');
}
// End -->
</script>
Het body gedeelte=
<BODY onLoad="javascript:popUp()">
|
8 antwoorden
Gesponsorde links |
|
NTS64 - 12/07/2009 12:38
|
PHP gevorderde |
|
Maak een functie met een parameter die het aantal pop-ups aanduidt, en gebruik deze in een for lus:
function popUp(a) {
for(i =0; i<a; i++)
{
window.open('blaat.html', 'poppage', 'toolbars=0, scrollbars=0,location=0, statusbars=0, menubars=0,resizable=0, width=1440, height=900');
}
}
function popUp(a) { for(i =0; i<a; i++) { window.open('blaat.html', 'poppage', 'toolbars=0, scrollbars=0,location=0, statusbars=0, menubars=0,resizable=0, width=1440, height=900'); } }
Om dan bijvoorbeeld 2 popups te openen gebruik je popUp(2); |
Koen - 12/07/2009 12:42
|
PHP expert |
|
Woedi schreef: Maak een functie met een parameter die het aantal pop-ups aanduidt, en gebruik deze in een for lus:
[..code..]
Om dan bijvoorbeeld 2 popups te openen gebruik je popUp(2);
Volgens mij bedoelt hij wel 2 verschillende popups ;) |
NTS64 - 12/07/2009 12:56 (laatste wijziging 12/07/2009 13:26)
|
PHP gevorderde |
|
Koen schreef: [..quote..]
Volgens mij bedoelt hij wel 2 verschillende popups ;)
Dan voeg je gewoon een array toe als paramter, met daarin de bronbestanden voor de verschillende popups
function popUp(a, bronnen) {
for(i =0; i<a; i++)
{
window.open(bronnen[i], 'poppage', 'toolbars=0, scrollbars=0,location=0, statusbars=0, menubars=0,resizable=0, width=1440, height=900');
}
}
function popUp(a, bronnen) { for(i =0; i<a; i++) { window.open(bronnen[i], 'poppage', 'toolbars=0, scrollbars=0,location=0, statusbars=0, menubars=0,resizable=0, width=1440, height=900'); } }
En dan roep je ze zo aan: popUp(2, new Array("foo.html", "bar.html"))
Edit @ hieronder: Zo, aangepast |
PDA_ - 13/07/2009 18:49
|
Nieuw lid |
|
Bedankt voor de snelle reacties, maar ik ben er nog niet helemaal uit, wat ik nu heb is het volgende
<head>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp(2, new Array(link1, link2)
) {
for(i =0; i<a; i++)
{
window.open(link1, link2[i], 'poppage', 'toolbars=0, scrollbars=0,location=0, statusbars=0, menubars=0,resizable=0, width=1440, height=900');
}
}
// End -->
</script></head>
<SCRIPT LANGUAGE="JavaScript"> <!-- Begin function popUp(2, new Array(link1, link2) ) { for(i =0; i<a; i++) { window.open(link1, link2[i], 'poppage', 'toolbars=0, scrollbars=0,location=0, statusbars=0, menubars=0,resizable=0, width=1440, height=900'); } } // End -->
<body>
<BODY onLoad="javascript:popUp()">
</body>
<BODY onLoad="javascript:popUp()">
Maar hij doet het dus nog niet, wat doe ik verkeerd?
|
PDA_ - 14/07/2009 20:57 (laatste wijziging 14/07/2009 20:57)
|
Nieuw lid |
|
Ow je bedoelt dat dan in het body-gedeelte moet, dus dan heb ik dit
<body>
<BODY onLoad="javascript:"popUp(2, new Array("link1", "link2"))" >
</body>
<BODY onLoad="javascript:"popUp(2, new Array("link1", "link2"))" >
Is dat goed?
En wat moet er dan in het head-gedeelte? |
Cosca - 14/07/2009 21:11
|
HTML beginner |
|
je moet ook rekening houden met de naam van het venster... die moet je dus ook wijzigen |
Gesponsorde links |
|
Dit onderwerp is gesloten. |
|