login  Naam:   Wachtwoord: 
Registreer je!
 Forum

javascript wachtwoord target/frame (Opgelost)

Offline roy1986 - 08/05/2009 17:26 (laatste wijziging 09/05/2009 12:58)
Avatar van roy1986Nieuw lid Beste Beheerders van diverse website's

Ik zit met een script vast.
Het is namelijk zo ik wil een target invoeren maar ik kan niet vinden waar ik hem moet plaatsen.
Het zijn 2 pagina's maar bij welke pagina moet het target staan.
Target ="main" maar ik krijg hem niet daar

Dit komt in menu te staan
  1. <html>
  2. <head>
  3. <title>test</title>
  4. </head>
  5. <body>
  6. <SCRIPT LANGUAGE="javascript">
  7. <!--- Hide from tired old browsers
  8. var nifty_little_window = null;
  9. function gateKeeper() {
  10. nifty_little_window = window.open('wachtwoord.htm', 'theKeeper',
  11. 'width=350,height=200,resizable=1');
  12. }
  13. // End hiding --->
  14. </SCRIPT>
  15. <form>
  16. <input type="button" value="Wachtwoord invullen" onClick="gateKeeper()"
  17. </form>
  18. </body>
  19. </html>


Dit is een popup
wachtwoord.htm
  1. <HTML>
  2. <HEAD>
  3. <TITLE>Gate Keeper</TITLE>
  4.  
  5. <SCRIPT LANGUAGE="JavaScript">
  6. <!--- Hide from tired old browsers that should be put to pasture.
  7.  
  8.  
  9. function goForit() {
  10. var location;
  11. var password;
  12. password=this.document.testform.inputbox.value
  13. location=password + ".htm"
  14. fetch(location)
  15. theKeeper=window.close()
  16. }
  17.  
  18. function fetch(location) {
  19. var root;
  20. if (opener.closed) {
  21. root=window.open('','theKeepersGopher','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no');
  22. root.location.href = location;
  23. } else {
  24. opener.location.href = location;
  25. }
  26. }
  27.  
  28. // End hiding --->
  29. </SCRIPT>
  30.  
  31. </HEAD>
  32.  
  33. <body bgcolor="#000080">
  34.  
  35. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  36. <TR>
  37. <TD ROWSPAN=2 WIDTH=50%>
  38. &nbsp;&nbsp;
  39.  
  40. <TD WIDTH=50% ALIGN=CENTER VALIGN=MIDDLE>
  41. <FONT FACE="ARIAL" SIZE=2 color="#FFFFFF"><B>Typ u wachtwoord in.</B></FONT><BR>
  42. &nbsp;
  43. <TR>
  44. <TD WIDTH=50% ALIGN=CENTER VALIGN=BOTTOM>
  45. <CENTER>
  46. <FORM NAME="testform">
  47. <INPUT TYPE="text" NAME="inputbox" VALUE="" size=20>
  48. <INPUT TYPE="button" NAME="button" Value="Bevestig U Wachtwoord" onClick="goForit(this.form)">
  49.  
  50.  
  51. </FORM>
  52. </CENTER>
  53.  
  54.  
  55. </TABLE>
  56.  
  57. </BODY>
  58.  
  59. </HTML>


Het is de bedoeling dat hij van uit het menu waar de buten staat Wachtwoord invullen de popup opend.
En als je het juiste wachtwoord in vuld VOORBEELD test dan opend hij test.htm.
En bij een fout geeft hij pagina niet gevonden weer.
Maar hij moet hem dan openen in "main"
"menu" komt de buten voor het inlogen
"main" hier komt de pagina na een goed wachtwoord

Hier onder zo als ik mijn site heb ingedeeld
http://www.freewebs.com/kleintjerd/test/index.htm

M.v.g Roy

2 antwoorden

Gesponsorde links
Offline dododedodo - 08/05/2009 20:35 (laatste wijziging 08/05/2009 20:36)
Avatar van dododedodo Lid Ik kan eventjes je vraag niet begrijpen. Tevens heb jij html allemaal in hoofletters. Dit is dus niet gewoon. Je schrijft alles met kleine letters, en zet alle waarden van attributen tussen dubbele quotes (") dus zo:


  1. <HTML>
  2. <HEAD>
  3. <TITLE>Gate Keeper</TITLE>
  4.  
  5. <SCRIPT LANGUAGE="JavaScript">
  6. <!--- Hide from tired old browsers that should be put to pasture.
  7.  
  8.  
  9. function goForit() {
  10. var location;
  11. var password;
  12. password=this.document.testform.inputbox.value
  13. location=password + ".htm"
  14. fetch(location)
  15. theKeeper=window.close()
  16. }
  17.  
  18. function fetch(location) {
  19. var root;
  20. if (opener.closed) {
  21. root=window.open('','theKeepersGopher','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no');
  22. root.location.href = location;
  23. } else {
  24. opener.location.href = location;
  25. }
  26. }
  27.  
  28. // End hiding --->
  29. </SCRIPT>
  30.  
  31. </HEAD>
  32.  
  33. <body bgcolor="#000080">
  34.  
  35. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  36. <TR>
  37. <TD ROWSPAN=2 WIDTH=50%>
  38. &nbsp;&nbsp;
  39.  
  40.  
  41.  
  42.  
  43. <td width="50%" align="center" valign="middle">
  44.  
  45.  
  46.  
  47.  
  48. <FONT FACE="ARIAL" SIZE=2 color="#FFFFFF"><B>Typ u wachtwoord in.</B></FONT><BR>
  49. &nbsp;
  50. <TR>
  51. <TD WIDTH=50% ALIGN=CENTER VALIGN=BOTTOM>
  52. <CENTER>
  53. <FORM NAME="testform">
  54. <INPUT TYPE="text" NAME="inputbox" VALUE="" size=20>
  55. <INPUT TYPE="button" NAME="button" Value="Bevestig U Wachtwoord" onClick="goForit(this.form)">
  56.  
  57.  
  58. </FORM>
  59. </CENTER>
  60.  
  61.  
  62. </TABLE>
  63.  
  64. </BODY>
  65.  
  66. </HTML>


Etc.
Offline roy1986 - 08/05/2009 22:13 (laatste wijziging 09/05/2009 18:30)
Avatar van roy1986 Nieuw lid ik heb even een site gemaat zie
http://www.freewebs.com/kleintjerd/test/index.htm
zo heb ik de indeling het is de bedoeling dat de popup buten blijft staan en in main de site komt te staan
de script er in gezet om het te testen elke keer bij een oplosing pas ik hem aan tot hij werkt

EDIT 09-05-2009 by roy1986

ik heb het al gevonden zie script
  1. <HTML>
  2. <HEAD>
  3. <TITLE>Gate Keeper</TITLE>
  4.  
  5. <SCRIPT LANGUAGE="JavaScript">
  6. <!--- Hide from tired old browsers that should be put to pasture.
  7.  
  8.  
  9. function goForit() {
  10. var location;
  11. var password;
  12. password=this.document.testform.inputbox.value
  13. location=password + ".htm"
  14. fetch(location)
  15. theKeeper=window.close()
  16. }
  17.  
  18. function fetch(location) {
  19. var root;
  20. if (opener.closed) {
  21. root=window.open('','theKeepersGopher','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no');
  22. root.location.href = location;
  23. } else {
  24. opener.parent.main.location.href = location;
  25. }
  26. }
  27.  
  28. // End hiding --->
  29. </SCRIPT>
  30.  
  31. </HEAD>
  32.  
  33. <body bgcolor="#000080">
  34.  
  35. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  36. <TR>
  37. <TD ROWSPAN=2 WIDTH=50%>
  38. &nbsp;&nbsp;
  39.  
  40. <TD WIDTH=50% ALIGN=CENTER VALIGN=MIDDLE>
  41. <FONT FACE="ARIAL" SIZE=2 color="#FFFFFF"><B>Typ u wachtwoord in.<br>Klik dan op Bevestig U Wachtwoord</B></FONT><BR>
  42. &nbsp;
  43. <TR>
  44. <TD WIDTH=50% ALIGN=CENTER VALIGN=BOTTOM>
  45. <CENTER>
  46. <FORM NAME="testform">
  47. <INPUT TYPE="text" NAME="inputbox" VALUE="" size=20>
  48. <INPUT TYPE="button" NAME="button" Value="Bevestig U Wachtwoord" onClick="goForit(this.form)">
  49.  
  50.  
  51. </FORM>
  52. </CENTER>
  53.  
  54.  
  55. </TABLE>
  56.  
  57. </BODY>
  58.  
  59. </HTML>
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.2s