首页 > Web开发 > 详细

js语句

时间:2020-09-26 18:53:21      阅读:35      评论:0      收藏:0      [点我收藏+]

<html>
<head>

<title>HTML示例</title>
<style type="text/css">


</style>

</head>

<body>
<script type="text/javascript">
// if 语句
/*
var a = 5;
if(a==5){
alert("5");
}else{
alert("6");
}
*/

// switch 语句
/*
var b = 6;
switch(b){
case 3:
alert("3");
break;
case 6:
alert("6");
break;
default:
alert("other");


}
*/
// while语句
/*
var num = 5;
var i = 3;
while(i){
alert(num);
i -= 1;
}
*/
// for循环
for (var m=5;m<10 ;m++ )
{
alert(m);
}
</script>

</body>

</html>

js语句

原文:https://www.cnblogs.com/felixyiding/p/13735726.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!