document.getElementById(\ D.document.getElementById(\ new Option(\正确答案:AC
页面呈现为: Click DIV Click P
鼠标单击页面中的Click P,则下面的说法正确的是:() A.clickP方法会被调用,提示输出的结果为:clickP, target=P
B.clickDIV方法会被调用,提示输出的结果为:clickDIV, target=DIV C.clickDIV方法会被调用,提示输出的结果为:clickDIV, target=P
D.clickP和clickDIV都会被调用,且先后顺序为clickP先,clickDIV后 正确答案:ACD 7.页面代码如下:
background-color:#ff0000; position:absolute;left:20px\
可以使得页面中的DIV每秒向右移动10px一共移动10秒的代码是:() A.function move(){ var toy=document.getElementById(\ toy.style.left=parseInt(toy.style.left)+10+\
}
var id = window.setInterval(move(), 1000); window.setTimeout(function(){ window.clearInterval(id) }, 10000);
B.function move(){
var toy = document.getElementById(\
toy.style.left = parseInt(toy.style.left) + 10 + \}
var id = window.setInterval(move, 1000); window.setTimeout(function(){ window.clearInterval(id) }, 10000);
C.var id = window.setInterval(function(){
var toy = document.getElementById(\ toy.style.left = toy.style.left + 10; }, 1000);
window.setTimeout(function(){ window.clearInterval(id) }, 10000);
D.var id = window.setInterval(function(){
var toy = document.getElementById(\
toy.style.left = parseInt(toy.style.left) + 10 + \}, 1000);
window.setTimeout(function(){ window.clearInterval(id) }, 10000); 正确答案:BD
8.打开一个窗口,加载页面1.html的代码是() A.window.open('', '1.html', 'height=100, width=200, top=0, left=0');
B.window.show('', '1.html', 'height=100, width=200, top=0, left=0'); C.window.open('1.html', '', 'height=100, width=200, top=0, left=0'); D.window.show('1.html', '', 'height=100, width=200, top=0, left=0'); 正确答案:C
9.运行下面的代码:
var arry7 = ['BB', 'AAA', 'C']; arry7.sort(); alert(arry7);
arry7.sort(function(a1, a2) { return a1.length - a2.length;} };
alert(arry7); 输出的结果是:() A.AAA BB C 和 C BB AAA B.AAA BB C 和 AAA BB C