Blogger Information
Blog 15
fans 0
comment 0
visits 8729
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js变量、语句等练习-19年10月21日
别的博客
Original
519 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    
<!-- 隐藏 图片 -->
<script>
$('img').css('display', 'none')
</script>


<!-- 表达式 -->
<script>
var age =18;

if(age>=18){

alert('成年人了');}else{

alert('未成年')
}
</script>



<!-- 数字类型 -->
<script>
   var age = 18;
   alert(typeof(age));
</script>



<!-- 数组类型 -->
<script>

var arr = [1,2,3,4];
alert (typeof(arr));

</script>


<!-- string类型 -->
<script>

    var age = '年龄';
    alert (typeof(age));
    </script>


<!-- 函数引用 -->

<script src="index.js"></script>



<!-- 函数定义 -->

 <script>
function age(num1,num2) {

var num1 = 18;
var num2 = 10;
var sum = num1 * num2;
return sum;
}
var res = age();
alert (res);
</script> 


<!-- 匿名函数 -->

<script>

function age(num1,num2) {
    var sum = num1 * num2;
    return sum;
}
var res = age(10,20);
alert (res);


</script> 



<!-- 定义匿名函数 -->
 <script>
    function age(num1,num2){
var sum = num1 + num2();
return sum;
}
    var res = age(10, function() {
        
        return 20;
        
    });
    alert (res);
    </script> 



</body>
</html>

运行实例 »

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



总结:JavaScript执行的单位是语句,语句是完成某种特定功能、任务的操作,一般以;结尾

不区分单双引号;在引入js文件中,不允许出现<script>,因为它本身就是js文件;

一共有两种输出方式:一种是alert;还有一种是console.log,这种显示的更详细。


Correction status:qualified

Teacher's comments:jquery的操作, 比原生要简化 了很多的
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