function gettotal(listdata) {
let total = 0
listdata.forEach((type) => {
total = total + type
});
return total
}
...
yekong
3年前 (2021-12-22)
喜欢
function gettotallist(listdata) {
let total = 0
var list2 = listdata;
var list = []
listdata.forEach((type) => {
...
yekong
3年前 (2021-12-22)
喜欢
js
$('.tabsinner').click(function () {
var i = $(this).index();//下标第一种写法
//var i = $('tit').index(t...
yekong
3年前 (2021-12-18)
喜欢
可能数据量太大内容有不规范的地方导致数组无法遍历造成的
Array.from()可以将数据转换成真正的数组
var data = Array.from(that.data)
data.forEach((type, index) => {
...
yekong
3年前 (2021-12-14)
喜欢
var a = ['1', '2', '3', '4', '5', '6', '7', '8', '9']
a.map(Number);...
yekong
3年前 (2021-12-01)
喜欢
var num =2.446242342;
num = num.toFixed(2); // 输出结果为 2.45
...
yekong
3年前 (2021-11-20)
喜欢
document.querySelector('#' + id).scrollIntoView(true)
...
yekong
3年前 (2021-11-16)
喜欢
let sNumber = this.datas.toString()
var data = []
for (var i = 0, len = sNumber.length; i < len; i += 1) {
data.push(...
yekong
3年前 (2021-11-15)
喜欢
var id=window.setInterval(function(){ },1000);
window.clearInterval(id);
...
yekong
3年前 (2021-11-15)
喜欢
export function color16 () {//十六进制颜色随机
var r = Math.floor(Math.random() * 256)
var g = Math.floor(Math.random() * 256)
var b = Math.f...
yekong
3年前 (2021-11-13)
喜欢