IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> JavaScript入门(2) -> 正文阅读

[JavaScript知识库]JavaScript入门(2)

JavaScript入门(2)

一.JS函数

1.基本语法

通过关键词function定义

function 函数名(参数1,参数2,...){
	要执行的代码
}

函数名可包含字母、数字、下划线和美元符号(规则与变量名相同)

参数是局部变量

2.调用

function hello() {
    document.write("hello world");
}

hello();

3.传参


function myFunction(a, b) {
    return a * b;
}

var x = myFunction(7, 8);

document.write(x);

function hello(name) {
    document.write("hello" + name);
}

hello('xinkong');

image-20210818170139324

return

function add(num1, num2) {
    document.write(num1 + num2);
    document.write('<BR>');
    return 10;
    document.write('done');
}

document.write(add(3, 2));

可以看出,return后面的代码并未被执行

image-20210818170918727

二.JS if…else语句

? 学过C语言等的话很好理解

1.基本语法

if (条件 1) {
    条件 1true 时执行的代码块
} else if (条件 2) {
    条件 1false 而条件 2true 时执行的代码块
 } else {
    条件 1 和条件 2 同时为 false 时执行的代码块
}
score = 59;
if (score > 90) {
    document.write("优秀!")
}
else if(score>80){
    document.write("良好")
}
else if(score>60){
    document.write("合格")
}
else {
    document.write("退学!(bushi")
}

image-20210818171754793

2.条件并列

且:&& 或:||


score1 = 59;
score2 = 91;
if (score1 > 90 ||score2>90) {
    document.write("优秀!")
}
else if(score1<60 && score2<60) {
    document.write("退学")
}
else {
    document.write("emm")
}

image-20210818172147581

3.例子:三个数比大小

function myCompare(a, b, c) {
    if (a >= b && a >= c) {
        max_num = a;
    }
    else if (b >= a && b >= c) {
        max_num = b;
    }
    else
    {
        max_num = c;
    }

    document.write(max_num);
}
myCompare(10, 10, 11);

image-20210818172550567

三.JS 对象

1.引入

? 学过面向对象的方法就知道,对象有属性,方法

? 下面就来学习JS对象的属性和方法

2.属性

属性用 名称:值的方式来书写

// 对象也是变量。但是对象包含很多值

var person = {
    name: "Danny",
    age: 17,
    gender: "male",
    //是否成年
    is_adult:false
};

3.方法

方法是在对象上执行的动作

如:

var person = {
    name: "Danny",
    age: 17,
    gender: "male",
    //是否成年
    is_adult: false,
    print_name: function{
        document.write(this.name);
    }
};
person.print_name();

image-20210818180942061

this关键词

在函数定义中,this 引用该函数的“拥有者”

上面的例子中,this.name意思就是this对象的name属性

4.实例

来用对象描述一下这部电影叭!

image-20210818181348644

var movie = {
    title: "《哪吒之魔童降世》",
    duration: "110min",
    actors: [
        {
            name: "吕艳婷",
            is_female: true,
            representative_work: "《山海界》",
        },
        {
            name: "陈浩 ",
            is_male: true,
            representative_work: "《叶问》"
        }
    ]

};
document.write(movie.title+movie.actors[0].name +" "+ movie.actors[1].name);

image-20210818190424231

四.JS 循环

1.while循环

基本语法

while (条件) {
    要执行的代码块
}
var i = 1;
while (i <= 10) {
    document.write(i);
    document.write("<BR>");
    i = i + 1;
}

image-20210818191153785

来试一个输入密码的程序

var pwd = 1234321
var input;
var i = 1;
while (i<=3) {
    input = prompt("请输入密码");
    if (pwd != input) {
        alert("密码错误!您还有" + (3 - i )+ "次机会");
    }
    else {
        alert("登陆成功");
        break;
    }
    i++;
}

image-20210818192158048

? prompt

image-20210818192303293

alert

image-20210818192349992

var password = 213;
var input;
var entry_count = 0;
var entry_limit = 3;
var out_of_limit = false;
while (password != input && !out_of_limit) {
    entry_count++;
    if (entry_count <= entry_limit) {
        input = prompt('请输入密码');
    }
    else {
        out_of_limit = true;
    }
}

if (out_of_limit) {
    alert("超出输入次数");
}
else {
    alert("登录成功");
}

image-20210818195257384

image-20210818195224145

2.do while循环

var i = 1;
do {
    document.write(i);
    document.write("<BR>");
    i++;
} while (i <= 10)
document.write(i);

image-20210818191446136

3.for 循环

基本语法

for (语句 1; 语句 2; 语句 3) {
     要执行的代码块
}
for (var i = 0; i < 10; i++){
    document.write(i);
    document.write('<br/>')
}
image-20210818200531409
var array=[13,12,41,4,1,51,2]
for (var i = 0; i < array.length; i++) {
    document.write(array[i]+" ");
    
}

image-20210818200651988

实例:答题闯关

? image-20210818201105334

image-20210818201116021
var questions = [
    {
        question: "1+1=?",
        answer: 2
    },
    {
        question: "2-2=?",
        answer: 0
    },
    {
        question: "3+2=?",
        answer: 5
    }

]
score = 0;
for (var i = 0; i < questions.length; i++) {
    // document.write(questions[i].answer)
    var input = prompt(questions[i].question);
    if (input == questions[i].answer) {
        alert("对了!");
    }
    else {
        alert("很抱歉,回答错误!");
    }
}
alert("答对了" + score + "题");

多重循环

var array = [
    [1, 2, 3],
    [4, 5, 6],
    [7,8,9],
]
for (i = 0; i <3; i++) {
    for (j = 0; j < 3; j++) {
        document.write(array[i][j]+" ")
    }
}

image-20210818212031302

变一下,如果不规则呢

var array = [
    [1, 2, 3,3114],
    [4, 5, 6,24,15,1,2,125,1,],
    [7, 8, 9],
    [2]
]
for (i = 0; i <array.length; i++) {
    for (j = 0; j < array[i].length; j++) {
        document.write(array[i][j]+" ")
    }
}

image-20210818212331699

五.JS 类

如果有很多相似的单一对象要一个一个创建的话,效率就低了一点,通过类可以创建许多对象


class Phone {
    //is_waterproof:是否防水
    constructor(number, year, is_waterproof) {
        this.number = number;
        this.year = year;
        this.is_waterproof = is_waterproof;
    }
    phone_age() {
        return 2021 - this.year;
    }
}

var phone1 = new Phone("1299", 2020, false);
var phone2 = new Phone("3199", 2018, true);
document.write(phone1.number + "<BR>");
document.write(phone2.phone_age());

constructor是一种用于创建和初始化class创建的对象的特殊方法

在一个类中只能有一个名为 “constructor” 的特殊方法

image-20210818213522701

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-08-19 11:57:40  更:2021-08-19 11:57:48 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 9:59:10-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码