<!DOCTYPE html> <html> <head> <meta charset=utf-8> </head> <body> <script type="text/javascript"> const _delete = (array,index) => { //深拷贝原数组 let arr= JSON.parse(JSON.stringify(array)) //在新数组中截取 arr.splice(index,1) return arr } </script> &...