window对象的( )属性用来指定浏览器状态栏中显示的临时消息。
A. title
B. status
C. toolbar
D. location
查看答案
在history对象中不能实现网页前进效果的方法是( )
A. forward()
B. back ()
C. go(1)
D. go(2)
在浏览器的状态栏上显示“注释状态栏”消息的代码是( )
A. window.status="这是状态栏"
B. window.status("这是状态栏")
C. status("这是状态栏")
D. status("这是状态栏",“”)
下列打开新窗口的代码中错误的是( )
A. window.open("window2.html","new")
B. window.open("window2.html","new","")
C. window.open("window2.html")
D. window.open("new","window2.html")