Hard-Styler1
Neues Mitglied
Habe jetzt 2 submit bottons einer Vor einmal Zurück
die beiden Zählen einmal bei jeden klick hoch oder runter
das heist ich kann mein Array jetzt damit ansprechen
nur hab ich jetzt null anhung wie es weiter geht hier mal der aktuelle Code
PHP-Code:
lg:Jooohny
die beiden Zählen einmal bei jeden klick hoch oder runter
das heist ich kann mein Array jetzt damit ansprechen
nur hab ich jetzt null anhung wie es weiter geht hier mal der aktuelle Code
PHP-Code:
<html>
<head>
<script language="javascript">
<!--
array = new Array(10);
array[0] = "bilder1.jpg";
array[1] = "bilder2.jpg";
array[2] = "bilder3.jpg";
array[3] = "bilder4.jpg";
array[4] = "bilder5.jpg";
array[5] = "bilder6.jpg";
array[6] = "bilder7.jpg";
array[7] = "bilder8.jpg";
array[8] = "bilder9.jpg";
array[9] = "bilder10.jpg";
function zurück() {
if ( ! vor.counter ) vor.counter=1;
vor.counter--;
alert (vor.counter);
}
function vor() {
if ( ! vor.counter ) vor.counter=1;
vor.counter++;
alert (vor.counter);
}
-->
</script>
</head>
<body>
<center>
<input type="Submit" value="Back Pic" onClick="zurück();">
<input type="Submit" value="Next Pic" onClick="vor();">
</center>
<noscript>
<center>
<h1>
Was bist du uncool mach mal JavaScript an
</h1>
</center>
</noscript>
</body>
</html>
<head>
<script language="javascript">
<!--
array = new Array(10);
array[0] = "bilder1.jpg";
array[1] = "bilder2.jpg";
array[2] = "bilder3.jpg";
array[3] = "bilder4.jpg";
array[4] = "bilder5.jpg";
array[5] = "bilder6.jpg";
array[6] = "bilder7.jpg";
array[7] = "bilder8.jpg";
array[8] = "bilder9.jpg";
array[9] = "bilder10.jpg";
function zurück() {
if ( ! vor.counter ) vor.counter=1;
vor.counter--;
alert (vor.counter);
}
function vor() {
if ( ! vor.counter ) vor.counter=1;
vor.counter++;
alert (vor.counter);
}
-->
</script>
</head>
<body>
<center>
<input type="Submit" value="Back Pic" onClick="zurück();">
<input type="Submit" value="Next Pic" onClick="vor();">
</center>
<noscript>
<center>
<h1>
Was bist du uncool mach mal JavaScript an
</h1>
</center>
</noscript>
</body>
</html>
lg:Jooohny