结果:12/20
您的回答:<script>
您的回答:document.write("Hello World")
您的回答:<body> 部分和 <head> 部分均可
您的回答:<script src="xxx.js">
您的回答:是
正确答案:否
您的回答:alert("Hello World")
您的回答:function myFunction()
您的回答:call function myFunction
正确答案:myFunction()
您的回答:if i==5 then
正确答案:if (i==5)
您的回答:if =! 5 then
正确答案:if (i != 5)
您的回答:四种。for 循环、while 循环、do...while 循环以及 loop...until 循环。
正确答案:两种。for 循环和 while 循环。
您的回答:for (i = 0; i <= 5; i++)
您的回答:<!--This is a comment-->
正确答案://This is a comment
您的回答:<!--This comment has more than one line-->
正确答案:/*This comment has more than one line*/
您的回答:var txt = new Array(1:"George",2:"John",3:"Thomas")
正确答案: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"
您的回答:navigator.appName
结果:12/20
您的回答:超文本标记语言(Hyper Text Markup Language)
您的回答:万维网联盟(W3C)
您的回答:<head>
正确答案:<h1>
您的回答:<br>
您的回答:<body bgcolor="yellow">
您的回答:<b>
您的回答:<i>
您的回答:<a href="http://www.w3school.com.cn">W3School</a>
您的回答:<mail>xxx@yyy</mail>
正确答案:<a href="mailto:xxx@yyy">
您的回答:<a href="url" new>
正确答案:<a href="url" target="_blank">
您的回答:<table><tr><td>
您的回答:<td align="left">
您的回答:<list>
正确答案:<ol>
您的回答:<ol>
正确答案:<ul>
您的回答:<checkbox>
正确答案:<input type="checkbox">
您的回答:<input type="text">
您的回答:<select>
您的回答:<input type="textarea">
正确答案:<textarea>
您的回答:<img src="image.gif">
您的回答:<background img="background.gif">
正确答案:<body background="background.gif">