每次我尝试以如下方式使用getFullYear();时,我都会收到以下错误var c = b.getFullYear();2:Console:ExecException in line 2 of function top_level, script Console:Exec
TypeError: b.getFullYear is not a func
当使用var years = new Date().setFullYear(new Date().getFullYear())时,我得到一个13位数的数字作为回报。(1521150199880)function changeYear(value) {
var years = new Date().setFullYear(new Date().getFullYear我也尝试过用.getFullYear()和.getYear()进行交换,但没有成功:/