我有一个根据Google脚本创建的Google表单。当受访者在提交表格之前在多项选择题中选择一个选项时,我希望能提供即时反馈。有什么办法吗?
答案 0 :(得分:0)
这可能是
function myFunction() {
var form=FormApp.getActiveForm();
// Add a checkBox item to a form and require exactly two selections.
var checkBoxItem = form.addCheckboxItem();
checkBoxItem.setTitle('What two condiments would you like on your hot dog?');
checkBoxItem.setChoices([
checkBoxItem.createChoice('Ketchup'),
checkBoxItem.createChoice('Mustard'),
checkBoxItem.createChoice('Relish')
]);
var checkBoxValidation = FormApp.createCheckboxValidation().setHelpText("Select two condiments.").requireSelectExactly(2).build();
checkBoxItem.setValidation(checkBoxValidation);
}
对于另一种即时反馈,您可以考虑创建一个 自定义HTML表单,以替代Google表单。