我想给一个单元格每60秒 赋 1-10内的 一个值,请教各位老师如何实现
加载结束事件
setInterval(function() {
var a=Math.round(Math.random()*10);
_g().setCellValue("E4", null, a);
}, 60000);