标签:
结果:15/20
您的回答:<script>
您的回答:document.write("Hello World")
您的回答:<body> 部分和 <head> 部分均可
您的回答:<script src="xxx.js">
您的回答:是
正确答案:否(原因:引入外部脚本需要,而外部脚本里面就不必要了
您的回答:alert("Hello World")
您的回答:function myFunction()
您的回答:call myFunction()
正确答案:myFunction() 原因:直接调用即可
您的回答:if (i==5)
您的回答:if (i != 5)
您的回答:两种。for 循环和 while 循环。
您的回答:for (i = 0; i <= 5; i++)
您的回答:<!--This is a comment-->
正确答案://This is a comment 原因:单行注释
您的回答:/*This comment has more than one line*/
您的回答:var txt = new Array("George","John","Thomas")
您的回答:Math.round(7.25)
您的回答:Math.max(2,4)
您的回答:window.open("http://www.w3school.com.cn","window2")
您的回答:window.status("put your message here")
正确答案:window.status = "put your message here"
您的回答:browser.name
正确答案:navigator.appName
标签:
原文地址:http://www.cnblogs.com/peterpan555/p/4264091.html