我有以下方法,效果很好,但是需要一些调整,不确定如何去做。
function onOpen() {
var ss=SpreadsheetApp.getActiveSpreadsheet();
var ui = SpreadsheetApp.getUi();
var Alert = ui.alert("Arash - $20, Gery - $15, Rachel - $0, Sunny - $0,
Ling - $15");
}
我要寻找的是,在弹出的每个“名称”部分中,即“ Arash-$ 20”将位于其自己的行中,而不是同时运行
非常感谢所有帮助
答案 0 :(得分:0)
您要按如下所示为每一行放置每个值。
Arash - $20, Gery - $15, Rachel - $0, Sunny - $0, Ling - $15
Arash - $20
Gery - $15
Rachel - $0
Sunny - $0
Ling - $15
为实现此目的,请使用\n
作为换行符。因此,请进行如下修改。
var Alert = ui.alert("Arash - $20, Gery - $15, Rachel - $0, Sunny - $0, Ling - $15");
至:
var Alert = ui.alert("Arash - $20\nGery - $15\nRachel - $0\nSunny - $0\nLing - $15");