分析下面這段代碼運行的結(jié)果()
A. 只輸出最后一次修改的時間
B. 只輸出文檔的標題
C. 輸出文檔的標題、最后一次修改時間和當前的URL
D. 什么也不輸出
您可能感興趣的試卷
你可能感興趣的試題
A.linkColor屬性
B.vlinkColor屬性
C.alinkColor屬性
D.以上都不是
下面這段代碼運行的結(jié)果()
<body>
<script language=”JavaScript”>
document.writeln(“文檔最后修改于”+document.lastModified);
var lastModObj=new Date(document. lastModified);
alert(lastModObj.getMinutes());
</script>
</body>
A. 彈出一個對象框
B. 沒有任何輸出
C. 在文檔中顯示文檔最后修改的時間
D. 在對話框中顯示文檔最后修改的時間
A.createElement
B.getElementById
C.getElementByName
D.forms.length
A.statusbar = "put your message here"
B.window.status = "put your message here"
C.window.status("put your message here")
D.status("put your message here")
A.open.new("http://www.w3schools.com","window2")
B.window.open("http://www.w3schools.com","window2")
C.new("http://www.w3schools.com","window2")
D.new.window("http://www.w3schools.com","window2")