1.ES5新增方法概述
1.1ES5新增方法概述
ES5中给我们新增了一些方法,可以很方便的操作数组或者字符串,这些方法主要包括:
- 数组方法
- 字符串方法
- 对象方法
1.2数组方法
迭代(遍历)方法:foreach()、map()、 filter()、some()、every();
- currentValue:数组当前项的值
- index:数组当前项的索引
- arr:数组对象本身
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//forEach迭代(遍历)数组
var arr = [1, 2, 3];
var sum = 0;
arr.forEach(function(value, index, array) {
console.log('每个数组' + value);
console.log('每个数组元素的索引号' + index);
console.log('数组本身' + array);
sum += value;
})
console.log(sum);
</script>
</body>
</html>
map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。
map() 方法按照原始数组元素顺序依次处理元素。
注意: map() 不会对空数组进行检测。
注意: map() 不会改变原始数组。
- filter()方法创建一个新的数组,新数组中的元素是通过检查指定数组中符合条件的所有元素,主要用于筛选数组
- 注意它直接返回一个新数组
- currentValue:数组当前项的值
- index:数组当前项的索引
- arr:数组对象本身
- filter() 不会对空数组进行检测,filter() 不会改变原始数组
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//filter筛选数组
var arr = [12, 66, 4, 88];
var newArr = arr.filter(function(value, index) {
return value >= 20;
});
console.log(newArr);
</script>
</body>
</html>
- some()方法用于检测数组中的元素是否满足指定条件,通俗点查找数组中是否有满足条件的元素
- 注意它返回值是布尔值,如果查找到这个元素,就返回true,如果查找不到就返回false
- 如果找到第一个满足条件的元素,则终止循环,不在继续查找
- currentValue:数组当前项的值
- index:数组当前项的索引
- arr:数组对象本身
- some() 不会对空数组进行检测, some() 不会改变原始数组
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//some查找数组中是否有满足条件的元素
var arr = [10, 30, 4];
var flag = arr.some(function(value) {
// return value >= 20;
return value < 3;
});
console.log(flag);
var arr1 = ['red', 'pink', 'blue'];
var flag1 = arr1.some(function(value) {
return value == 'pink';
})
console.log(flag1);
//1.filter 也是查找满足条件的元素 返回的是一个数组 而且是把所有满足条件的元素返回回来
//2.some也是查找满足条件的元素是否存在 返回的是一个布尔值 如果查找到第一个满足条件的元素就终止循环
</script>
</body>
</html>
every() 方法用于检测数组所有元素是否都符合指定条件(通过函数提供)。
every() 方法使用指定函数检测数组中的所有元素:
如果数组中检测到有一个元素不满足,则整个表达式返回 false ,且剩余的元素不会再进行检测。
如果所有元素都满足条件,则返回 true。
注意: every() 不会对空数组进行检测。
注意: every() 不会改变原始数组。
商品查询案例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
table {
width: 400px;
border: 1px solid #000;
border-collapse: collapse;
margin: 0 auto;
}
td,
th {
border: 1px solid #000;
text-align: center;
}
input {
width: 50px;
}
.search {
width: 600px;
margin: 20px auto;
}
</style>
</head>
<body>
<div class="search">
按照价格查询: <input type="text" class="start"> - <input type="text" class="end"> <button class="search-price">搜索</button> 按照商品名称查询: <input type="text" class="product"> <button class="search-pro">查询</button>
</div>
<table>
<thead>
<tr>
<th>id</th>
<th>产品名称</th>
<th>价格</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script>
//利用新增数组方法操作数据
var data = [{
id: 1,
pname: '小米',
price: 3999
}, {
id: 2,
pname: 'oppo',
price: 999
}, {
id: 3,
pname: '荣耀',
price: 1299
}, {
id: 4,
pname: '华为',
price: 1999
}];
//1.获取相应的元素
var tbody = document.querySelector('tbody');
var search_price = document.querySelector('.search-price');
var start = document.querySelector('.start');
var end = document.querySelector('.end');
var product = document.querySelector('.product');
var search_pro = document.querySelector('.search-pro');
setData(data);
//2.把数据渲染到页面
function setData(mydata) {
//先清空原来tbody里面的数据
tbody.innerHTML = '';
mydata.forEach(function(value) {
// console.log(value);
var tr = document.createElement('tr');
tr.innerHTML = '<td>' + value.id + '</td><td>' + value.pname + '</td><td>' + value.price + '</td>'
tbody.appendChild(tr);
});
}
//3.根据价格查询商品
//当我们点击了按钮 就可以根据我们的商品价格去筛选数组里面的对象
search_price.addEventListener('click', function() {
// alert(1);
var newData = data.filter(function(value) {
return value.price >= start.value && value.price <= end.value;
});
// console.log(newData);
//把筛选完之后的对象渲染到页面中
setData(newData);
});
//4.根据商品名称查找商品
//如果查询数组中唯一的元素, 用some方法更合适,因为它找到这个元素,就不在进行循环,效率更高
search_pro.addEventListener('click', function() {
var arr = [];
data.some(function(value) {
if (value.pname === product.value) {
// console.log(value);
arr.push(value);
return true; //return 后面必须写true
}
});
//把拿到的数据渲染到页面
setData(arr);
})
</script>
</body>
</html>
1.3字符串方法
trim()方法会从一个字符串的两端删除空白字符。
trim()方法并不影响原字符串本身,它返回的是一个新的字符串
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<input type="text"><button>点击</button>
<div></div>
<script>
//trim方法去除字符串两侧的空格
var str = ' andy ';
console.log(str);
var str1 = str.trim();
console.log(str1);
var input = document.querySelector('input');
var btn = document.querySelector('button');
// console.log(btn);
var div = document.querySelector('div');
btn.onclick = function() {
var str = input.value.trim();
if (str === '') {
alert('请输入内容');
} else {
console.log(str.length);
div.innerHTML = str;
}
}
</script>
</body>
</html>
1.4对象方法
1.Object.keys()用于获取对象自身所有的属性
- 效果类似于for……in
- 返回一个由属性名组成的数组
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//1.用于获取对象自身的所有属性
var Obj = {
id: 1,
uname: '小米',
price: 1999,
num: 2000
};
var arr = Object.keys(Obj);
console.log(arr);
console.log(arr[1]);
arr.forEach(function(value) {
console.log(value);
})
</script>
</body>
</html>
2.Object.defineProperty()定义对象中新属性或者修改原有的属性
- obj:必需。目标对象
- prop:必需。需定义或修改原有的属性
- descriptor:必需。目标属性所拥有的属性
Object.defineProperty()第三个参数的说明:以对象形式{}书写
- value:设置属性的值,默认为undefined
- writable:值是否可以重写,true | false默认为false
- enumerable:目标属性是否可以被枚举,true | false默认为false
- configurable:目标属性是否可以被删除或是否可以再次修改特性 true | false默认为false
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//Object.defineProperty() 定义新属性或者修改原来的属性
var Obj = {
id: 1,
uname: '小米',
price: 1999,
};
//1.以前的对象添加和修改属性的方式
// Obj.num = 1000;
// Obj.price = 99;
// console.log(Obj);
//2. Object.defineProperty() 定义新属性或者修改原来的属性
Object.defineProperty(Obj, 'num', {
value: 1000
});
console.log(Obj);
Object.defineProperty(Obj, 'price', {
value: 9.9,
});
console.log(Obj);
Object.defineProperty(Obj, 'id', {
//不允许修改这个属性
writable: true
});
Obj.id = 2;
console.log(Obj);
Object.defineProperty(Obj, 'address', {
value: '中国xx市xx',
writable: false,
// enumerable如果值为false 则不允许遍历,默认值是false
enumerable: false,
// configurable 如果值为false 则不允许被删除 不允许被修改第三个里面的特性
configurable: false
});
console.log(Obj);
console.log(Object.keys(Obj));
delete Obj.address;
console.log(Obj);
delete Obj.uname;
console.log(Obj);
Object.defineProperty(Obj, 'address', {
value: '中国xx市xx',
writable: true,
// enumerable如果值为false 则不允许遍历,默认值是false
enumerable: true,
// configurable 如果值为false 则不允许被删除 不允许被修改
configurable: true
});
console.log(Obj.address);
</script>
</body>
</html>
输出截图: