编程学习笔记
一.编译型与解释型语言
1.编译型:
JAVA C++等(需要编译器)
2.解释型:
JavaScript(只需浏览器即可)
3.区分大小写
JavaScript区分大小写
二.程序注释
1.JavaScript注释:
//(双斜杠,单行注释) /*注释内容*/(多行注释)
2.html注释:
<!--注释内容-->
三.变量函数定义
1.JavaScript变量定义赋值:
var age = 33;
2.JavaScript数组定义赋值:
传统以下标取值的数组定义
方法一:
var beatles = Array(); 或者var beatles = Array(4);可以指定元素个数,也可以不指定元素个数
beatles[0] = "John";
beatles[1] = "Paul";
beatles[2] = "George";
beatles[3] = "Ringo";
方法二:
var beatles = ["John", "Paul", "George", "Ringo"];
关联数组定义
var lemon = Array();
lemon["name"] = "John";
lemon["year"] = 1940;
3.JavaScript对象定义
方法一:
var lemon = Object();或者 var lemon = {};
lemon.name = "John";
lemon.age = 1940;
方法二:
var lemon = {name:"John",age:1940};
JavaScript内建对象的使用:
Array对象:
var beatles = new Array();
beatles.length;
Math对象:
var num = 7.561;
var num = Math.round(num);
alert(num);
Date对象:
var current_date = new Date();
var today = current_date.getDay();
var today = current_date.getMonth();
var today = current_date.getHours();
4.JavaScript函数定义
用关键字 function
1.无参数写法
function shout(){
var beatles = ["John", "Paul", "George", "Ringo"];
for(var count = 0; count < beatles.length; count++){
alert(beatles[count]);
}
}
2.有参数写法
function multiply(num1, num2){
var total = num1 * num2;
alert(total);
}
四.调试输出:
1.JavaScript输出写法:
alert("hello world!");
五.循环
1.JavaScript for循环:
var count = 1;
for(count,count < 11; count++){
alert(count);
}
2.JavaScript while循环:
var count = 1;
while(count < 11){
alert(count);
count++;
}
六.html网页代码框架:
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8" />
<title>网页标题<title/>
</head>
<body>
网页内容
</body>
</html>
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭