(一)引用数据类型

  1. object
  2. function
  3. array

object

JavaScript对象用花括号来书写
对象属性是name:value由逗号分隔

var x={firstname:"bill",lastname:"ddd"};

function

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
<script type="text/javascript">
function add(a,b){
return a+b;
}
var x=add("ss","dd");
var s=add(1,2);
console.log(x);
console.log(typeof x);
console.log(s);
console.log(typeof s);
</script>
</body>
</html>

array

var arr={"aaa","ss","dd"};

特征

  1. 值可变
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
<script type="text/javascript">
var x={age:20};
x.age=21;
console.log(x.age);
console.log(typeof x.age);
</script>
</body>
</html>
  • 存放在栈和堆中

(二)数据类型检验方法

1.typeof

返回一个表示数据类型的字符串

  • number
  • boolean
  • string
  • symbol
  • object
  • undefined
  • function

不能判断array和null,以及date,regexp等

2.instanceof

用来判断A是否为B的实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
<script type="text/javascript">
console.log([]instanceof Array);
console.log({} instanceof Object);
console.log(new Date instanceof Date);
console.log(new RegExp instanceof RegExp);
</script>
</body>
</html>

无法判断字面量初始化的基本数据类型:

console.log(1 instanceof Number);//false
console.log(new Number(1) instanceof Number);//true

3.constructor

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
<script type="text/javascript">
console.log((1).constructor===Number);
var a=[1,2];
console.log(a.constructor===Array);
console.log(a.constructor===Object);//false
var date=new Date()
console.log(date.constructor==Date);
</script>
</body>
</html>

constructor检测Object与instanceof不一样,只认当前数据类型,不认父类

  var a=[1,2];
console.log(a.constructor===Array);//true
console.log(a.constructor===Object);//false
console.log([]instanceof Array);//true
console.log([] instanceof Object);//true

4.总结

判断方法 缺点
typeof 不能判断array和null,以及date,regexp等
instanceof 无法判断字面量初始化的基本数据类型;null和undefined也无法被识别
constructor null和undefined也无法被识别

(三)运算符

  1. 检验密码长度(点击检验)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
密码:<input id="password" type="password" name="password" placeholder="密码长度在6-18之间">
<p><button type="button" onclick="checkpassword()">确定</button></p>
<script type="text/javascript">
function checkpassword(){
//获取密码
var password=document.getElementById("password").value;
//判断密码长度,不合格时弹框提示
if(password.length<6||password.length>18){
alert("密码长度在6-18之间,请重新输入");
}
}
</script>
</body>
</html>
  1. 检验用户名(时时检验)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
<style type="text/css">
span{
font-size: 10px;
color: red;
}
</style>
</head>
<body>
用户名:<input id="username" type="text" name="username" placeholder="请输入用户名" onkeyup="CheckUserName(this)">
<span id="msg"></span><br>
密码:<input id="password" type="password" name="password" placeholder="密码长度在6-18之间">
<p><button type="button" onclick="checkpassword()">确定</button></p>
<script type="text/javascript">
function checkpassword(){
//获取密码
var password=document.getElementById("password").value;
//判断密码长度,不合格时弹框提示
if(password.length<6||password.length>18){
alert("密码长度在6-18之间,请重新输入");
}
}
function CheckUserName(username){
var value=username.value;
/*使用弹窗*/
// if(value=="admin"){
// alert("不允许使用admin")
// }
/*使用插入*/
if(value=="admin"){
document.getElementById("msg").innerHTML="不允许使用admin";
}
else{
document.getElementById("msg").innerHTML="";
}
//简化
//document.getElementById("msg").innerHTML=(username.value=="admin"?"不允许使用admin":"");
}
</script>
</body>
</html>

1.算术运算符

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
<script type="text/javascript">
var n1=100+10+"100";
var n2="100"+10+100;
console.log(n1);
console.log(n2);
console.log(typeof n1);
console.log(typeof n2);
</script>
</body>
</html>

2.loop循环

  1. for…in…可以写下标
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
<script type="text/javascript">
var n1=["a","b","c","d","e"];
for(let x in n1){
console.log("第",x,"个:",n1[x]);
}
</script>
</body>
</html>
  1. for…of…(元素)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
<script type="text/javascript">
var n1=["a","b","c","d","e"];
for(let x of n1){
console.log(x);
}
</script>
</body>
</html>

(四)字符串

字符串

length

length 属性返回字符串的长度:

var txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var sln = txt.length;
查找字符串中的字符串
  1. indexOf() 方法返回字符串中指定文本首次出现的索引(位置):
var str = "The full name of China is the People's Republic of China.";
var pos = str.indexOf("China");//17
  1. lastIndexOf() 方法返回指定文本在字符串中最后一次出现的索引:
var str = "The full name of China is the People's Republic of China.";
var pos = str.lastIndexOf("China");//51
  1. 如果未找到文本, indexOf() 和 lastIndexOf() 均返回 -1。
  2. 两种方法都接受作为检索起始位置的第二个参数。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>dem</title>
</head>
<body>
<script type="text/javascript">
var str = "The full name of China is the People's Republic of China.";
var pos = str.indexOf("China",18);
var po = str.indexOf("China", 3);//17
console.log(pos);
console.log(po);
</script>
</body>
</html>
  1. lastIndexOf() 方法向后进行检索(从尾到头),这意味着:假如第二个参数是 50,则从位置 50 开始检索,直到字符串的起点。
var str = "The full name of China is the People's Republic of China.";
var pos = str.lastIndexOf("China", 50);
  1. search() 方法搜索特定值的字符串,并返回匹配的位置:
var str = "The full name of China is the People's Republic of China.";
var pos = str.search("China");
  1. 两种方法,indexOf() 与 search(),是相等的。
    这两种方法是不相等的。区别在于:
    search() 方法无法设置第二个开始位置参数。
    indexOf() 方法无法设置更强大的搜索值(正则表达式)。

提取部分字符串

有三种提取部分字符串的方法:

  • slice(start, end)
  • substring(start, end)
  • substr(start, length)
  1. slice() 方法
    slice() 提取字符串的某个部分并在新字符串中返回被提取的部分。
    该方法设置两个参数:起始索引(开始位置),终止索引(结束位置
    个例子裁剪字符串中位置 7 到位置 13 的片段:
var str = "Apple, Banana, Mango";
var res = str.slice(7,13);

如果某个参数为负,则从字符串的结尾开始计数。
这个例子裁剪字符串中位置 -12 到位置 -6 的片段:

var str = "Apple, Banana, Mango";
var res = str.slice(-13,-7);

如果省略第二个参数,则该方法将裁剪字符串的剩余部分:

var res = str.slice(7);
substring() 方法

substring() 类似于 slice()。
不同之处在于 substring() 无法接受负的索引。

var str = "Apple, Banana, Mango";
var res = str.substring(7,13);

如果省略第二个参数,则该 substring() 将裁剪字符串的剩余部分。

substr() 方法

substr() 类似于 slice()。
不同之处在于第二个参数规定被提取部分的长度。

var str = "Apple, Banana, Mango";
var res = str.substr(7,6);
var str = "Apple, Banana, Mango";
var res = str.substr(7);

替换字符串内容

replace() 方法用另一个值替换在字符串中指定的值:
实例

str = "Please visit Microsoft!";
var n = str.replace("Microsoft", "W3School")

replace() 方法不会改变调用它的字符串。它返回的是新字符串。

默认地,replace() 只替换首个匹配:

转换为大写和小写

  1. 通过 toUpperCase() 把字符串转换为大写:
    实例
var text1 = "Hello World!";       // 字符串
var text2 = text1.toUpperCase(); // text2 是被转换为大写的 text1
  1. 通过 toLowerCase() 把字符串转换为小写:
    实例
var text1 = "Hello World!";       // 字符串
var text2 = text1.toLowerCase(); // text2 是被转换为小写的 text1

concat() 方法

concat() 连接两个或多个字符串:
实例

var text1 = "Hello";
var text2 = "World";
text3 = text1.concat(" ",text2);

随机推荐

  1. nrm工具

    nrm 工具 nrm(npm registry manager)是npm镜像源管理工具.可快速帮助查看.切换.管理npm镜像源. 安装 npm install -g nrm 查看 nrm ls 切换 ...

  2. Win32编程

    WIN32 malloc函数的底层实现是Win32API 字符编码 原始的ASCII编码最多能表示127个符号 0-7F(十六进制) 缺点:表示的符号太少了 ASCII编码的扩展:GB2312或GB2 ...

  3. Postgresql: 常用配置

    允许远程链接postgresql 要允许 PostgreSQL 数据库允许远程连接,需要进行以下配置步骤: 打开 PostgreSQL 的主配置文件 postgresql.conf.通常,该文件位于以 ...

  4. 如何在CMD窗口运行python文件

    进入文件所在的路径输入: python  文件名

  5. 深度系统安装mysql

    # 安装 Mysql 8.0.19下载 MySQL Community Server 8.0.19 [Compressed TAR Archive](mysql-8.0.19-linux-glibc2 ...

  6. 应用层协议之DNS、DHCP

    运输层为应用进程提供了端对端的通信服务,但不同的网络应用的应用进程之间,还需要有不同的通信规则.因此在运输层协议之上,还需要有应用层协议. 应用层中有这些常见的协议 域名系统:DNS 动态主机配置:D ...

  7. [nginx]lua读取请求体

    前言 nginx默认不读取请求体的数据,但可以通过$request_body内置变量来获取.$request_body存在内存中,如果它的字节大小超过nginx配置的client_body_buffe ...

  8. windows使用nc命令基础下载安装---小白篇

    windows使用nc命令 文章源起: 在使用该标题关键词搜索文章,内容多为搬运,且历史悠久. 且,对-l -p 参数未讲解,对小白不友好. 对配置环境变量的方式不理解,误导小白. 对文件解压内容未讲 ...

  9. shopee商品详情接口的应用

    Shopee是东南亚和台湾地区最大的电子商务平台之一,成立于2015年,目前覆盖6个国家和地区.作为一家新兴电商平台,Shopee拥有快速增长的销售额和庞大的用户群体,为开发者提供了丰富的商业机会.其 ...

  10. 接口未配置在app.json文件中

    微信小程序发布 提示 接口未配置在app.json文件中 狗血 昨天更新 就在app.json中添加  解决问题 "requiredPrivateInfos":[ "ge ...