不想多说了,直接发个例子吧
<html>
<head>
<title>简单的while循环例子</title>
<script language="javascript">
<!--//hide me
var password="tograce";
var answer;
while(answer!=password)
{
answer=prompt("input the password(tograce)","");
}
//show me-->
</script>
</head>
</html>