Apps Scriptリファレンス: Apps Script Reference |障害・課題追跡: IssueTracker |Google Workspace: Status Dashboard - Summary

2019年12月7日土曜日

JSでボタンを押し続けてカウントアップしたい








コード.gs
function doGet() {
  return HtmlService.createHtmlOutputFromFile("index");
}
意訳
この機能がやること
指定したHTMLファイルを表示する




index.html
<!DOCTYPE html>
<html>
  <body>
    <label id="count">1</label>
    <br>
    <button id="nextBt">+</button>
    <button id="prevBt">-</button>

    <script>    
      var timer;
    
      elem("nextBt").onmousedown = nextKeydown;
      elem("nextBt").onmouseup = nextKeyup;
      elem("prevBt").onmousedown = prevKeydown;
      elem("prevBt").onmouseup = prevKeyup;
    
      function elem(id) {
        return document.getElementById(id);
      }
    
      function nextKeydown() {
        timer = setInterval(function() { setCount(1) }, 100);
      }
    
      function nextKeyup() {
        clearInterval(timer);
      }
    
      function prevKeydown() {
        timer = setInterval(function() { setCount(-1) }, 100);
      }
    
      function prevKeyup() {
        clearInterval(timer);
      }

      function setCount(num) {
        elem("count").textContent = parseInt(elem("count").textContent) + num;
      }
    </script>
  </body>
</html>




Latest post

スプレッドシートの空白セルを直前の値で埋めたい

A列の空白セルに直前の値を入れたくて書いたコードです スプレッドシートに以下のようなBeforeの表があるとき (A列に空白セルがある) Before 1 A B 2 エリア 都市 3 東京 新宿 4 渋谷 5 池袋 6 神奈川 横浜 7 川崎 8 相模原 9 千葉 千葉 10 ...