我希望能够通过gscript从表单上的一个问题中删除一个选择,而不会删除整个问题,而且我不确定这是否有可能
答案 0 :(得分:3)
function removeOption1() {
var cbItem = FormApp.getActiveForm()
.getItems(FormApp.ItemType.CHECKBOX)[0]
.asCheckboxItem();
cbItem.setChoices(
cbItem.getChoices().filter(function(choice) {
return choice.getValue() !== 'Option 1';
})
);
}