Blogger Information
Blog 13
fans 0
comment 0
visits 9996
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js变量语句表达式函数练习2019年10月21日20时
加勒比强强的博客
Original
538 people have browsed it

1,把js变量,语句,表达式例子练习一遍

实例

var a = "php中文网";  

//上面语句定义 一个js的变量,并且变量的值是字符串类型.

运行实例 »

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

实例

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

<script>
var a = 22;

if(a>=20){
	alert("我毕业啦");
}else{
	alert("我还没毕业");
}

</script>

</html>

运行实例 »

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

上面语句为一个表达式,对变量进行判断,并且用alert的方式在浏览器出现一个弹出框,

还可以用document.write直接输出在页面上,console.log也可以输出到控制台。



2,函数定义及调用,匿名函数练习一遍

实例

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

<script>
function func(num1,num2){

	var sum = num1+num2;
	return sum;
}
var res =func(2019,2000);
document.write(res);



</script>

</html>

运行实例 »

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

以上代码运用了函数调用,并输出结果到浏览器。


实例

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

<script>
function func(num1,num2){
	num3= num2();
	var sum = num1+num3;
	return sum;
}
var res =func(2019,function (){return 2000});

document.write(res);



</script>

</html>

运行实例 »

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

以上代码演示的是匿名函数的调用

Correction status:qualified

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