在页面上有一个id为room的文本框,下面选项()能够实现当单击room时,room的背景颜色变为“#cccccc”。
①
input id=room type=text onfocus=this.style.backgroundColor=#cccccc /
②
input id=room type=text onfocus=this.backgroundColor=#cccccc /
③
input id=room type=text onblur=this.style.backgroundColor=#cccccc /
④
input id=room type=text onblur=this.backgroundColor=#cccccc /