單項選擇題

document.onmouseup = function(){
this.onmousemove = null;
this.onmouseup = null;
} ,這里的this指向()

A.window對象
B.document對象
C.function對象
D.以上說法都正確


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題以下不是JS中內(nèi)置函數(shù)的是()

A.Object
B.Error
C.Function
D.loading

3.單項選擇題以下哪個單詞不屬于javascript關(guān)鍵字()

A.with
B.parent
C.class
D.void

5.單項選擇題點擊按鈕時,每隔10秒調(diào)用一次changeImg這個函數(shù),以下寫法正確的有()

A.btn.onclick=setInterval(changeImg(),5000);
B.btn.onclick=setInterval(changeImg,5000);
C.btn.onclick=function(){setInterval(changeImg(),5000);}
D.btn.onclick=function(){setInterval(changeImg,5000);}