【发布时间】:2013-07-19 16:02:39
【问题描述】:
function onEdit(e) {
Browser.msgBox(e.changeType);
if (e.changeType == 'EDIT') {
...
}
}
当工作表单元格从空变为数字时,事件成功触发,但 msgBox 输出显示“未定义”。
e.changeType 不应该包含“EDIT”吗?
我正在使用这个参考:https://developers.google.com/apps-script/understanding_events
【问题讨论】:
标签: google-apps-script google-sheets triggers