QC_RUBBER_QUALITY.rar求助:以下界面点击折线图的标签点,可以带出日期,但是当跨月的时候,点击上月的日期时,如何使用js抓取到上个月呢?如下图显示,点击4号,传递日期为11月4号,点击31号,传递的日期为11月31号实际上我想传的日期为10月31号js代码如下:var date = new Date();var year=date.getFullYear()var month=(date .getMonth())<10?'0'+(date .getMonth()+1):(date .getMonth()+1)console.log(year+"-"+month+'-'+dataTime)window.parent.postMessage(year+"-"+month+'-'+dataTime, '*')