请看:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无题</title>
<!--zhaoxiaoyang.cnblogs.com/-->
</head>
<body>
<script>
<!--
function windowopen()//定义一个函数。
{
var target="http://zhaoxiaoyang.cnblogs.com"//设置一个字符串。
newwindow=window.open("","","scrollbars")//打开一个新窗口。
if (document.all){
newwindow.moveTo(0,0)//新窗口从(0,0)位置开始显示。
newwindow.resizeTo(screen.width,screen.height)//新窗口的尺寸是整个屏幕的宽,整个屏幕的高。
}
newwindow.location=target//显示target指定的链接地址。
}
//-->
</script>
<form>
<input type="button" onClick="windowopen()" value="全屏显示" name="button">
</form> 
<!--插入一个按钮,点击它的时候调用windowopen()函数。--> 
</body>
</html>问题:
如果我要在<form>
<input type="button" onClick="windowopen()" value="全屏显示" name="button">
</form>
的里面加注释的话(<form></form>   ,就是<input type="button" onClick="windowopen()" value="全屏显示" name="button">的下一行),该用什么注释符号。我试了常用的注释符号。但是都不起效果。