我有一个包含以下字段的sharepoint列表。
名称:(输入文字字段) 面积:(选择字段) - 下拉式 密码:(输入文字字段)
保存表单时,以上所有字段都不应为空。
我想在PreSaveAction中使用多个 IF 条件,如果任何条件失败,它应该返回false。
If statement1 {
conditions1
return true;
//if failed return false;
}
else if statement2 {
conditions2
return true;
//if failed return false;
}
else if statement3{
conditions
return true;
//if failed return false;
}
else
{
return false;
}
答案 0 :(得分:1)