Blogger Information
Blog 20
fans 0
comment 0
visits 39960
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JavaScript基础第一节变量、数据类型、语句、注释、练习、2019年3月30日22时54分
Time
Original
785 people have browsed it

实例

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>前端JavaScript第一节作业</title>
		<script src="js/demo1.js"></script>
	</head>
	<script>
		document.write('你好我是Time');
		var lasy = '你好我是Time,目标全栈攻城狮!';
		console.log(lasy);//浏览器中
		alert(lasy);
		var lasy1 =8;
		var lasy2 =10;
		var lasy3=lasy1+lasy2;
		document.write('<br/>');
		document.write(lasy3);
		// JavaScript 区分大小写   , 这个是单行注释
		/*内容 多行注释*/
		 //JavaScript 数据类型  字符串、数字、布尔、数组、对象、Null、Undefined(变量不含有值)   7种
		 //Undefined 无值
		 document.write('<br/>');
		 var lasy0;
		 document.write(lasy0);
		 //字符串:存储字符的变量 ,引号中的任意文本  单双引号
		 //Null:只有一个值的类型, 也可作为清空变量使用
		 //数字number: number 整数
		 //布尔boolean:对(true )  错 (false )
		 //对象object:拥有属性和方法的数据  属性和方法的容器
		 //数组Array: 使用单独的变量存储值
		 
		 
		 
		 //条件语句if
		 if(lasy2>lasy1){
			 alert('恭喜你正确')
		 }else{
			 alert('恭喜你错误')
		 }
		 
		 //案例成绩
		  document.write('<br/>');
		 var lasys = 75;
		 if(lasys<60){
			 document.write('No!')
		 }else if(lasys>=60){
			 document.write('及格.....')
		 }else if(lasy>=70){
			  document.write('优秀.....')
		 }else if(lasy>=90){
				document.write('相当优秀.....')
		 }
		// 判断闰年
		//年份可以整除4,但是不能整除400的就是闰年,别的就是平年
		var las=1994;
	  if(las%4 !=0){
	  	alert('不是闰年')
	  }else if(las%100 !=0){
	  	alert('不是闰年')
	  }else{
	  	alert('是闰年!')
	  }

	</script>
	<body>
	</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post