我们可以编辑 Google Apps 脚本中使用的 windows 警告框的标题吗?

Can we edit title of windows alert box being used in Google Apps script?

我们可以为使用 google 应用程序脚本创建的网络应用自定义警告框中的标题吗?

function confirmReserve(text){
  document.body.style.cursor = 'auto';
  console.log('text = '+text);
  alert(text);
}

出于安全原因,无法更改警报的标题,以便让用户知道是谁发送警报并避免可能的网络钓鱼。

您可以使用模态框来显示您想要的消息。例如:

HTML:

<!DOCTYPE html>
<html>

<head>
  <base target="_top">
</head>

<body>
  <button id="myBtn">Open Modal</button>
  <div style="display: none" id="myModal" class="modal">
    <div class="modal-content">
      <span class="close">&times;</span>
      <p>Some text in the Modal..</p>
    </div>
  </div>
</body>
<script>
var modal = document.getElementById("myModal");
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];
btn.onclick = function() {
  modal.style.display = "block";
}
span.onclick = function() {
  modal.style.display = "none";
}
window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}
</script>

</html>

然后您可以使用 CSS.

将模态样式设置为提醒