ďťż
Podstrony
|
telcocafeWItam, co jest zle w tym kodzie?Dlaczego nie da sie zmienic koloru tla za pomoca guzikow?<html> <head><title></title> </head> <body bgcolor="yellow"> <form> <input type="button" name="jeden" value="Zmien kolor tla" onmouseover="document.bgcolor='#00FF66';"> </form> <form> <input type="button" name="dwa" value="powrot do bialego" onclick="document.bgcolor='#FFFFFF';"> </form> </body> </html> Ja mam inny skrypt na tło strony <script LANGUAGE="Javascript"> <!-- document.write("<CENTER>"); document.write("<FORM NAME=\"Kolory\">"); document.write("<select name=\"schemesel\" onchange=\"document.bgColor = this.options[selectedIndex].value\">"); document.write("<option value=\"white\" selected>Biały"); document.write("<option value=\"navy\">Granatowy"); document.write("<option value=\"gray\">Szary"); document.write("<option value=\"yellow\">Żółty"); document.write("<option value=\"violet\">Fioletowy"); document.write("<option value=\"red\">Czerwony"); document.write("<option value=\"brown\">Brązowy"); document.write("<option value=\"silver\">Srebrny"); document.write("<option value=\"pink\">Różowy"); document.write("<option value=\"blue\">Niebieski"); document.write("</select>"); document.write("</FORM>"); document.write("</CENTER>"); // --> </SCRIPT> wypróbuj i oceń czy nie lepsze :) document.getElementById('test').style.backgroundColor='red'; Nadaj znacznikowi BODY atrybut ID o wartości "test". ---- lub ---- body.style.backgroundColor='red'; Wersja IE, pod FireFox omże nie działać. |
|||
Sitedesign by AltusUmbrae. |