程序功能:利用JS编程,创建一个函数,清除等于0的元素4 h" B; f b; ?& f
程序要求:将业务逻辑封装成函数,设计一组数据进行测试,显示测试结果
0 h- ?: m9 `* g. {6 L# m. C程序原理:利用filter方法对数组进行过滤,通过检查指定数组中符合条件的所有元素(注意:filter()不会对空数组进行检测、不会改变原始数组)
* m3 S! J G5 b一、语法:
) z6 a1 w' u3 F Array.filter(function(currentValue, indedx, arr), thisValue)
2 _: s. s% c7 [ 其中,函数 function 为必须,数组中的每个元素都会执行这个函数。且如果返回值为 true,则该元素被保留;函数的第一个参数 currentValue 也为必须,代表当前元素的值。
7 p$ A0 I) I4 O* b# h0 ?二、用法:
) Z3 _! B2 |6 T 返回数组nums中所有大于5的元素。" M0 `$ k- W P1 i! R5 F- s6 M
let nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
let res = nums.filter((num) => {
return num > 5;
});
console.log(res); //结果 [6, 7, 8, 9, 10] 三、按要求的完整实例:
3 m- ]2 r4 I$ R7 P: H* ?7 \1 R4 j<!DOCTYPE Html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>删除0</title>
</head>
<body>
<div class="main">
输入数组:<input type="text" class="arr" value="0, 0, 0, 1, 20, 0, 0, 3, 4, 5, 0">
<button class="del">处理</button> <br>处理结果:
<input class="result" disabled></h1>
</div>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
function clearNumber(arr) {
return arr.filter(item => item != 0)
}
$('.del').click(function name() {
var array = [];
var arr = $('.arr').val().split(',');
for (var i = 0; i < arr.length; i++) {
array.push(parseFloat(arr[i]));
}
$('.result').val(clearNumber(array))
})
</script>
</body>
</html> " P4 B% M% A* S! y
9 j' y7 X w7 \! e |