标签:
您的回答:<script>
您的回答:document.write("Hello World")
您的回答:<body> 部分和 <head> 部分均可
您的回答:<script src="xxx.js">
您的回答:否
您的回答:alert("Hello World")
您的回答:function myFunction()
您的回答:myFunction()
您的回答:if (i==5)
您的回答:if (i != 5)
您的回答:四种。for 循环、while 循环、do...while 循环以及 loop...until 循环。
正确答案:两种。for 循环和 while 循环。
您的回答:for (i = 0; i <= 5; i++)
您的回答://This is a comment
您的回答:/*This comment has more than one line*/
您的回答:var txt = new Array("George","John","Thomas")
您的回答:round(7.25)
正确答案:Math.round(7.25)
您的回答:Math.max(2,4)
您的回答:open.new("http://www.w3school.com.cn","window2")
正确答案: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/luoluo189/p/5743625.html