列表

详情


在JavaScript中要改变页面文档的背景色,需要修改document对象的(  )属性。


A. BackColor

B. BackgroundColor

C. BgColor

D. Background

参考答案: C

详细解析:

本题考查Javascript中document对象的使用方法。
在JavaScript中改变页面文档的背景色,需修改document对象的bgColor属性,表示形式为document.BgColor。其中A、B、D虽然都代表背景色的意思,但是 Javascript中document对象仅有一种表示法,为document.BgColor,故本题选C。
希赛点拨:doucument常用对象方法
document.write()  //动态向页面写入内容
document.createElementByID(Tag)  //创建一个html标签对象
document.getElementByID(ID)  //获得指定ID值的对象
document.getElementsByName(Name)  //获得指定Name值的对象  

上一题