Blogger Information
Blog 24
fans 2
comment 5
visits 19004
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js变量、表达式、函数、匿名函数的定义及调用--2019-10-21
木槿昔年的博客
Original
780 people have browsed it

js变量、表达式、函数、匿名函数的定义及调用

js变量的定义,由关键字var表示,js语句用闭合标签script包裹,js的语法与php有些相似,语句结束最好写上分号';'结尾,函数的声明用关键字function 来定义,函数名称由英文或者下划线开始。

实例

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>js变量</title>
	<script>
	//定义变量
	var a = '我是变量字符串';
	var b = 5;
	
    //js if流程控制语句
	if(b>8){
		alert('变量b大于8');
	}else{
		alert('变量b不大于8');
	}
	
    //js 函数
	function sum(a,b){
		var c = a+b;
		alert(c);
	}
	
    //js匿名函数赋值给一个变量
	var mulit = function(a,b){
		alert(a*b);
	};
        
    //函数调用
	sum(5,6);
        
    //匿名函数调用
	mulit(5,6);

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

运行实例 »

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


原生js不熟练,要跟着老师一步步学习,作业落下的比较多,js要跟上了。

Correction status:qualified

Teacher's comments:作业慢慢写吧, 原生js比较麻烦, 所以才有了大量的框架进地简化
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