Why doesn't initial page focus change input field to Green on Google Chrome?
问题 Why doesn't initial page focus doesn't change input field to Green on Google Chrome? I probably have to dig up the rgb stuff, don't I? <html> <head> <script src="jquery-1.6.2.js"></script> <script type="text/javascript"> function Change(obj, evt) { if (evt.type == "focus") { obj.style.borderColor = "black"; obj.style.backgroundColor = "#90EE90"; // light green on focus } else if (evt.type == "blur") { obj.style.borderColor = "white"; obj.style.backgroundColor = "#7AC5CD"; // light blue on