單項(xiàng)選擇題
document.onmouseup = function(){
this.onmousemove = null;
this.onmouseup = null;
} ,這里的this指向()
A.window對(duì)象
B.document對(duì)象
C.function對(duì)象
D.以上說(shuō)法都正確
您可能感興趣的試卷
你可能感興趣的試題
1.單項(xiàng)選擇題以下不是JS中內(nèi)置函數(shù)的是()
A.Object
B.Error
C.Function
D.loading
2.單項(xiàng)選擇題
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