Doc Open上的简单弹出窗口

时间:2019-02-15 08:53:29

标签: google-apps-script

我有以下方法,效果很好,但是需要一些调整,不确定如何去做。

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”将位于其自己的行中,而不是同时运行

非常感谢所有帮助

1 个答案:

答案 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");

参考: