JavaScript高级之ES5 中的新增方法
Posted 小小白学计算机
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript高级之ES5 中的新增方法相关的知识,希望对你有一定的参考价值。
3.1 ES5 新增方法概述
ES5 中给我们新增了一些方法,可以很方便的操作数组或者字符串,这些方法主要包括:
- 数组方法
- 字符串方法
- 对象方法
3.2 数组方法
迭代(遍历)方法:forEach()、map()、filter()、some()、every();
1)array.forEach(function(currentValue, index, arr))
- currentValue:数组当前项的值
- index:数组当前项的索引
- arr:数组对象本身
2)array.filter(function(currentValue, index, arr))
- filter() 方法创建一个新的数组,新数组中的2元素是通过检查指定数组中符合条件的所有元素,
主要用于筛选数组
注意它直接返回一个新数组
- currentValue: 数组当前项的值
- index:数组当前项的索引
- arr:数组对象本身
3)array.some(function(currentValue, index, arr))
- some() 方法用于检测数组中的元素是否满足指定条件. 通俗点 查找数组中是否有满足条件的元素
注意它返回值是布尔值, 如果查找到这个元素, 就返回true , 如果查找不到就返回false.
- 如果找到第一个满足条件的元素,则终止循环. 不在继续查找.
- currentValue: 数组当前项的值
- index:数组当前项的索引
- arr:数组对象本身
查询商品案例:
- 把数据渲染到页面中 (forEach)
- 根据价格显示数据 (filter)
- 根据商品名称显示数据(some)
<!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(111)
var newData = data.filter(function(value) {
return value.price >= start.value && value.price <= end.value
})
console.log(newData)
// 把筛选之后的对象渲染到页面中
setData(newData)
})
// 4. 根据商品名称查找shangp
// 如果查询数组中唯一的元素,用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>
3.3 字符串方法
trim() 方法会从一个字符串的两端删除空白字符。
str.trim()
trim() 方法并不影响原字符串本身,它返回的是一个新的字符串。
3.4 对象方法
- Object.keys() 用于获取对象自身所有的属性
Object.keys(obj)
效果类似 for…in
返回一个由属性名组成的数组
- Object.defineProperty() 定义对象中新属性或修改原有的属性。(了解)
Object.defineProperty(obj, prop, descriptor)
obj:必需。目标对象
prop:必需。需定义或修改的属性的名字
descriptor:必需。目标属性所拥有的特性
以上是关于JavaScript高级之ES5 中的新增方法的主要内容,如果未能解决你的问题,请参考以下文章