單項選擇題要求用JavaScript實現(xiàn)下面的功能:在一個文本框中內(nèi)容發(fā)生改變后,單擊頁面的其他部分將彈出一個消息框顯示文本框中的內(nèi)容,下面語句正確的是()。

A.〈input type="text" onClick="alert(this.value)"〉
B.〈input type="text" onChange="alert(this.value)"〉
C.〈input type="text" onChange="alert(text.value)"〉
D.〈input type="text" onClick="alert(value)"〉


您可能感興趣的試卷

你可能感興趣的試題

3.單項選擇題Javascript中制作圖片代替按鈕的提交效果需要手動提交方法submit(),以下調(diào)用正確的是()。

A.submit()
B.myform.submit()
C.document.myform.submit()
D.window.myform.submit()

4.單項選擇題在HTML頁面中包含一個按鈕控件mybutton,如果要實現(xiàn)點擊該按鈕時調(diào)用已定義的Javascript函數(shù)compute,要編寫的HTML代碼是()。

A.〈input name=“mybutton” type=“button” onBlur=“compute()” value=“計算”〉
B.〈input name=“mybutton” type=“button” onFocus=“compute()” value=“計算”〉
C.〈input name=“mybutton” type=“button” onClick=“functioncompute()” value=“計算”〉
D.〈input name=“mybutton” type=“button” onClick=“compute()” value=“計算”〉

5.多項選擇題在Javascript中,對于瀏覽器對象的層次關(guān)系理解正確的是()。

A.window對象是所有頁面內(nèi)容的根對象
B.document對象包含location對象和history對象
C.location對象包含history
D.document對象包含form對象