Links in JavaScript und Html

Fedez

Newbie
Registriert
Mai 2022
Beiträge
4
Hallo,
an alle die sich mit Js (Java script) auskennen,
ich habe ein Problem.
ich wollte einen code schreiben, beidem ich 20 mal auf einen Knopf drücken muss
und bei dem 20 mal soll eine andere html-Datei geöffnet werden.
doch ich schaffe es nicht, im java script code,
eine Verlinkung zu einer anderen html-Datei zu programmieren.
Könnte mir da jemand Weiterhelfen?

Danke schon mal im voraus
Ergänzung ()

Hello,
to all who are familiar with Js (Java script),
I have a problem.
I wanted to write a code where I have to press a button 20 times
and at the 20th time another html file should be opened.
but I can't do it, in the java script code,
program a link to another html file.
Could someone help me with that?

Thanks in advance
 
also du willst 20 Buttons erzeugen mit JS?
Wie sieht denn dein Code bislang aus?
 
nein,
ich habe einen Button und auf diesen einen soll ich 20 mal drauf drücken
dadrüber ist eine Schrift die anzeigt wie oft du gedrückt hast.
Nun soll eine neue html-Datei geöffnet weiden wenn ich 20 mal auf den einen Knopf drauf gedrückt habe.
 
  • Gefällt mir
Reaktionen: Fedez
meinen sie so:
(als bsp. von Index.html zu Index2.html)

<script>
window.location = 'Index2.html';
</script>
 
für relative Pfade ist es

Javascript:
window.location.href = 'Index2.html';
 
  • Gefällt mir
Reaktionen: Fedez
Wenn ich es richtig verstanden habe, dann so z.B.:
Code:
<script>
let x = 0;
function myFunction() {
  x++;
  if (x === 20){
    window.location = 'https://www.google.de';
   }
}
</script>
<button onclick="myFunction()">Klick mich</button>
 
Ach, weil du bei "dem 20 mal" geschrieben hast, dachte ich, bei "den 20 mal" und nicht "dem 20. mal" ;-)
 
Zurück
Oben