單項選擇題

如果在HTML頁面中包含如下圖片標簽,則選項中的()語句能夠?qū)崿F(xiàn)隱藏該圖片的功能。
< img id=”pic” src=”Sunset.jpg” width=”400” height=”300”>

A.document.getElementById(“pic”).style.display=”visible”; 
B.document.getElementById(“pic”).style.display=”disvisible”; 
C.document.getElementById(“pic”).style.display=”block”; 
D.document.getElementById(“pic”).style.display=”none”;


您可能感興趣的試卷

你可能感興趣的試題

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

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

3.單項選擇題在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=”function compute()”value=”計算”> 
D.<input name=”mybutton” type=”button” onClick=”compute()”value=”計算”>

4.單項選擇題下列選項中關(guān)于瀏覽器對象的說法錯誤的是()

A.history對象記錄了用戶在一個瀏覽器中已經(jīng)訪問過的URLs
B.location對象相當于IE瀏覽器中的地址欄,包含關(guān)于當前URL地址的信息
C.location對象是history對象的父對象
D.location對象是window對象的子對象