关于JavaScript的判断语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于JavaScript的判断语句相关的知识,希望对你有一定的参考价值。
上一篇描述的都是一些通过条件判断来执行,符合条件下面的代码块,达到对动作的反应效果
这篇将描述的是for、 for/in、 while、 do/while循环语句。
for语句:
for(i=0,i<car.length,i++){ document.write(car[i]+"</br>") }
这里的car是一个数组的数据类型,这个语句会遍历所有符合条件的
for/in语句:
<style type="text/javascript">
function myFunction(){ var x; var txt=""; var person{fname:"Bill",lname:"Gates",age:56} for(x in person){ txt=txt+person[x] }
document.getElementById("demo").innerhtml=txt; }
</style>
<p id="demo"></p>
<button onclick="myFunction()">点击</button>
while语句:
只要指定条件为 true,循环就可以一直执行代码。
while (i<5) { x=x + "The number is " + i + "<br>"; i++; }
do/while 循环是 while 循环的变体。该循环会执行一次代码块,在检查条件是否为真之前,然后如果条件为真的话,就会重复这个循环。(至少执行一次)
do { x=x + "The number is " + i + "<br>"; i++; } while (i<5);
以上是关于关于JavaScript的判断语句的主要内容,如果未能解决你的问题,请参考以下文章