打开名为“window2”的新窗口的JavaScript语法是()
A.window.new(‘http://www.baidu.com’,‘window2’)
B.window.open(‘http://www.baidu.com’,‘window2’,‘’)
C.new(‘http://www.baidu.com’,‘window2’);
D.new.window(‘http://www.baidu.com’,‘window2’);
查看答案
如何在浏览器的状态栏放入一条消息()
A.statusbar = ‘put your message here’
B.window.status = ‘put your message here’
C.window.status(‘put your message here’)
D.status(‘put your message here’)
与window对象无关的属性是下列哪项()
A.top
B.self
C.left
D.frames
history从属于window,下列能访问前一页面的方法是()
A.back(-1)
B.back(1)
C.forward(1)
D.go(-1)
关于以下两个陈述的描述中,正确的是() 陈述1:window对象的confirm方法用于显示一个包括相关信息以及Yes和No这两个按钮的对话框。 陈述2:window对象的alert方法用于弹出一个提示窗口,显示提示信息。
A.陈述1正确,陈述2错误
B.陈述1错误,陈述2正确
C.陈述1和陈述2均正确
D.陈述1和陈述2均错误