要将输入从Google电子表格侧边栏发送到工作表脚本函数,可以按照以下步骤进行操作:
google.script.run
方法来实现。google.script.run
方法来调用这个函数。下面是一个示例代码,演示了如何将输入从Google电子表格侧边栏发送到工作表脚本函数:
在侧边栏的HTML文件中:
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<form>
<input type="text" id="inputData">
<button type="button" onclick="sendData()">发送</button>
</form>
<script>
function sendData() {
var inputData = document.getElementById("inputData").value;
google.script.run.processData(inputData);
}
</script>
</body>
</html>
在工作表脚本中:
function processData(inputData) {
// 在这里处理接收到的数据
// 可以将数据写入工作表或执行其他操作
}
通过以上步骤,你可以将输入从Google电子表格侧边栏发送到工作表脚本函数中进行处理。请注意,这只是一个简单的示例,你可以根据实际需求进行修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云