尝试在 Google Apps Script 中进行一些干净的编程。有谁知道如何重用经常重复的方法/属性链?例子:
var lblDate = app.createLabel("Date")
.setId('lblDate')
.setStyleAttribute("fontFamily", "\"Helvetica Neue\", \"HelveticaNeue\", Helvetica, Arial, \"Lucida Grande\", sans-serif")
.setStyleAttribute("fontSize", "14px")
.setStyleAttribute("fontSize", "1.4rem")
.setStyleAttribute("lineHeight", "1")
.setStyleAttribute("color", "#222222")
.setStyleAttribute("position", "relative");
这个问题对我有很多影响,但手头的任务(上图)是仅使用 GAS Javascript 将 Zurb Foundation 样式应用于各种表单元素。
有接盘侠吗?