用JavaScript实现打开一个新窗口,地址为abc.html,正确的方法是( )。
A: window.open(“”,“”,“”);
B: window.open(“”,“abc.html”,“”);
C: window.open(“abc.html”,“”,“”);
D: window.open(“”,“”,“abc.html”);
A: window.open(“”,“”,“”);
B: window.open(“”,“abc.html”,“”);
C: window.open(“abc.html”,“”,“”);
D: window.open(“”,“”,“abc.html”);
举一反三
- 用JavaScript实现打开一个新窗口,地址为abc.html,正确的方法是() A: window.open(“abc.html”,“”,“”) B: window.open(“”,“abc.html”,“”) C: window.open(“”,“”,“abc.html”)
- window对象的( )方法可以关闭使用window.open()打开的窗口。 A: open() B: stop() C: move() D: close()
- 用JavaScript实现打开一个新窗口,地址为abc.html,正确的方法是
- Do you mind my ______ A: open the window B: that open the window C: opening the window D: to open the window
- 在JavaScript中,使用open()方法实现弹出窗口时,能够使窗口大小无法调节的选项是()。 A: window.open("show.html","弹出窗口","resizable=1"); B: window.open("show.html","弹出窗口","resizable=no"); C: window.open("show.html","弹出窗口","resizable=yes"); D: window.open("show.html","弹出窗口","resizable=0");