-

JS基础知识入门教程

WEB前端

JavaScript是一种轻量级的编程语言,简称JS。JS是可插入 HTML 页面的编程代码,JS插入 HTML 页面后,可由所有的现代浏览器执行。JS主要包括BOM操作和DOM操作。var声明变量,分号结束,+为字符串的连接符,JS变量是动态的,可以用不同的类型。变量类型有字符串(String)、数字(Number)、布尔(Boolean)、数组(Array)、对象(Object)、空(Null)、未定义(Undefined),JS基本的语句有if语句,if else语句,while语句 ,for语句。下面雷雪松给大家分享JS基础知识入门教程。

[cc lang=”javascript” escaped=”true”]//字符串
var name = “leixuesong”;
//字符串长度
name.length;
//数字
var age = 20;
//数组循环
var arr = [1,2,3];
for(var i=0;i<arr.length;i++){
console.log(“index:” +i+”–value:”+arr[i]);
}
//数组长度
arr.length;
//对象
var obj = {name:”leixuesong”,age:”21″};
//对象遍历
for(i in obj){
console.log(“key:” +i+”–value:”+obj[i]);
}
//null
var cars=null;

var a = 10;
var b = 20;

//if语句
if(a < b){
console.log(“a小于b!”);
}
if(b > a){
console.log(“b大于a!”);
}
if(a != b){
console.log(“两个数值不相等!”);
}
//if else语句
if( a == b){
console.log(“两个数值相等!”);
}else{
console.log(“两个数值不相等!”);
}

if( a < b){
console.log(“a小于b!”);
}else if(a == b){
console.log(“a相等b!”);
}else{
console.log(“a大于b!”);
}

//switch语句
var day=new Date().getDay();
switch (day)
{
case 0:
x=”Today it’s Sunday”;
break;
case 1:
x=”Today it’s Monday”;
break;
case 2:
x=”Today it’s Tuesday”;
break;
case 3:
x=”Today it’s Wednesday”;
break;
case 4:
x=”Today it’s Thursday”;
break;
case 5:
x=”Today it’s Friday”;
break;
case 6:
x=”Today it’s Saturday”;
break;
}

//for语句
for (var i=0; i<5; i++){
console.log(i);
}

//while语句
while (i<5){
console.log(i);
i++;
}

//do/while 循环
do{
console.log(i);
i++;
}while(i<5)
九九乘法表
var str = “”;
for(var i =1 ; i <=9; i++){
for(var j = 1; j <=i ; j++){
str+=i + ” * ” + j + ” = ” + i*j + ” “;
}
str+= “<br />”;
}
document.write(str);[/cc]

来源:JS基础知识入门教程

6 评论 “JS基础知识入门教程

    卢松松商城 评论:
    2016年8月12日 下午2:34

    我感觉这个挺好用的呢

    卢松松商城 评论:
    2016年9月12日 下午3:17

    js用到的地方很多

    2tj 评论:
    2019年5月5日 下午8:44

    哇塞,居然是沙发?留个名

    fifth6 评论:
    2019年5月5日 下午9:04

    哇塞,居然是沙发?留个名

    61o 评论:
    2019年5月9日 下午8:45

    哇塞,居然是沙发?留个名

    嘀嗒小说网,嘀嗒小说阅读网 评论:
    2019年5月10日 下午11:46

    看过了。很好很强大。

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注