JavaScript im body als Name

GodWar

Erfahrenes Mitglied
Guten Tag!

Folgender Code:
HTML:
<script type="text/javascript"><!--
				now = new Date();
				hours = now.getHours();
				if (hours > 22 && hours < 6) { //Nacht
					//document.write ("Nachts");
				} else if (hours > 4 && hours < 9) { //Früh
					//document.write ("Früh");
				} else if (hours > 7 && hours < 13) { //Vormittag
					//document.write ("Vormittag");
				} else if (hours > 11 && hours < 14) { //Mittag
					//document.write ("Mittag");
				} else if (hours > 12 && hours < 19) { //Nachmittag
					//document.write ("body.jpg");
				} else if (hours > 17 && hours < 23) { //Abends
					//document.write ("Abends");
				}
				test = "body.jpg";
				//-->
</script>

De Variable test soll im body erscheinen bzw. ersetzt werden nd so zum Pfad werden:

<body style=background-image:url("{@RELATIVE_WCF_DIR}images/wiihomebrewv2/>>>HIER<<<")>

Wie bekomme ich das hin?

Vielen Dank!
 
Könntest Du das bitte mit einem Beispiel zeigen? Das hier funktioniert leider nicht:

PHP:
            <script type="text/javascript"><!--
			function Wii () {
				now = new Date();
				hours = now.getHours();
				if (hours > 22 && hours < 6) { //Nacht
					//document.write ("Nachts");
				} else if (hours > 4 && hours < 9) { //Früh
					//document.write ("Früh");
				} else if (hours > 7 && hours < 13) { //Vormittag
					//document.write ("Vormittag");
				} else if (hours > 11 && hours < 14) { //Mittag
					//document.write ("Mittag");
				} else if (hours > 12 && hours < 19) { //Nachmittag
					//document.write ("body.jpg");
				} else if (hours > 17 && hours < 23) { //Abends
					//document.write ("Abends");
				}
				document.body.style.backgroundImage = "url({@RELATIVE_WCF_DIR}images/wiihomebrewv2/body.jpg)";
				//<body style="background-image:url({@RELATIVE_WCF_DIR}images/wiihomebrewv2/body.jpg)"">
			}
			</script> 

<body onLoad="Wii()">
 
Zuletzt bearbeitet:

Neue Beiträge

Zurück