编写 Javascript函数实现网页背景色选择器,下列选项中正确的是( )
A.function change(color){ window.bgColor;}
B.function change(color){document. bgColor=color;}
C. function change(color){body.bgColor=color;}
D. function change(color){form. bg Color=color;}
在 Javascript中,可以使用Date对象的0方法返回一个月中的每一天。( )
A. getDate
B.getYear
C.getMonth
D.getTime
下列选项中关于浏览器对象的说法错误的是( )
A.history对象记录了用户在一个浏览器中已经访问过的URLs
B.location对象相当于正浏览器中的地址栏,包含关于当前URL地址的信息
C.location对象是history对象的父对象
D.location对象是 window对象的子对象
在HIML页面中包含一个按钮控件 mybutton,如果要实现点击该按钮时调用己定义的 Javascript函数 compute,要编写的HML代码是( )
A. < input name=”mybutton”type= "button” onBlur=” compute()"value=”计算”>
B. < input name=”mybutton”type=" button” on Focus=”compute()” value=”计算”>
C. < input name= “mybutton”type="button" onClick=" function compute()" value=”计算”>
D. < input name=”mybutton" type=”button” onClick= “compute()”value=”计算”>