script src=jqueryjquery-1124minjsscriptscript src=staticechartsechartsjsscriptscript windowonload = function ev $ajax type get url whitelistSettingstat suc
The error in the code is on this line:
option.series[0].data.push(list[i].number())
The correct syntax for accessing the "number" property of an object in JavaScript is using dot notation (list[i].number) instead of parentheses (list[i].number()).
The correct code should be:
option.series[0].data.push(list[i].number)
原文地址: https://www.cveoy.top/t/topic/hXYm 著作权归作者所有。请勿转载和采集!