我有以下代码:
function myFunction() {
DocumentApp.getActiveDocument()
.getFootnotes()
.forEach(f => f.removeFromParent());
}
这将删除所有脚注。我只想删除两个脚注中的第二个。有什么想法吗?
function myFunction() {
DocumentApp.getActiveDocument().getFootnotes()[1].removeFromParent();