Blogger Information
Blog 10
fans 0
comment 0
visits 7646
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
循环、对象、函数 -5-6作业
李男_江苏_412288
Original
917 people have browsed it
  1. 写一个while循环, 输出一个数值数组所有的奇数


2. 写一个对象字面量, 描述一款你喜欢的手机信息

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>object</title>
</head>
<body>
<script>
    // JavaScript是面向对象的脚本语言,对象是语言的核心
    // JavaScrip中最重要的数据类型就是: 对象
    // 对象: 无序的键值对(key-value)的集合
    // 最简单的对象创建方式: 对象字面量
    //   字面量:直接量,硬编码
    // // 对象字面量使用一对大括号创建
    // var user = {
    //     // 大括号中的内容叫: 对象成员,由键值对组成
    //     name: 'Peter', // name: 键,  'Peter': 值
    //     age: 30,    // 每个键值对之间用逗号分开
    //     gender: 'male' // 最后一个成员后面可省略逗号
    // }

    var phone = {
        '@name' :'iphone7',
        color:'black',
        weight:'250g',
        getname:function (value) {
            return this['@name']+value;
        }
    };
     // 对象访问,应该用点语法,如果有非法字符,应该用方括号,记得方括号里引号要带上
    // 访问的数据,如果要加其他字符,写在变量的前边,要带引号
    console.log('名称:'+phone['@name']);
    console.log('名称:'+phone.getname('zhu'));
    
    // 遍历:  for+( var key in 变量){console.log(变量[key])}
     for (var key in phone) {
          console.log(phone[key]);
     }


</script>

</body>
</html>

运行实例 »

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

3. 写一个函数表达式, 计算三个数之和

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>函数</title>
</head>
<body>
<script>
    // // 匿名函数/函数表达式
    // var show = function (a,b,c) {
    //     console.log(a+b+c)
    // };
    // // 调用:
    //   show(1,2,3);

 // 函数也是对象:无序的属性的集合
 //    函数表达式
    var show = function () {
        return arguments[0]+arguments[1]+arguments[2];
    };
    console.log(show(1,2,3));   //当参数为数字时相加,就是运算,当参数为字符时,就是拼接。


</script>

</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