单项选择题
document.onmouseup = function(){
this.onmousemove = null;
this.onmouseup = null;
} ,这里的this指向()
A.window对象
B.document对象
C.function对象
D.以上说法都正确
点击查看答案
相关考题
-
单项选择题
以下不是JS中内置函数的是()
A.Object
B.Error
C.Function
D.loading -
单项选择题
var a=2; var func=(function(){ var a=3; return function(){ a++; alert(a) } })() alert分别输出什么值?()
A.3,4
B.4,4
C.4,5
D.undefined,undefined -
单项选择题
以下哪个单词不属于javascript关键字()
A.with
B.parent
C.class
D.void
