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

2019年12月29日日曜日

押したキーのkeyCodeを連続して取得したい


半角英数モードで
上のテキストエリアでキーボードの任意のキーを押したときに
下のテキストエリアに改行つなぎでkeyCodeを書き出したくて作りました。


デモ





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




index.html
<!DOCTYPE html>
<html>
  <head>
    <style>
      #ta2 {
        height: 90vh;
      }
    </style>
  </head>
  <body>
    <textarea id="ta"></textarea>
    <br>
    <textarea id="ta2"></textarea>
<script>
document.getElementById('ta').onkeydown = taKeyDown;

function taKeyDown(e) {
  var code = e.keyCode;
  console.log(code);
  var ta2 = document.getElementById('ta2');
  ta2.value = ta2.value + code + '\n';
}
</script>
  </body>
</html>


Latest post

Google Apps Scriptの障害時はIssueTrackerを見てみる - Incidents for Apps Script are reported on Issue Tracker

IssueTracker > Apps Script issues https://issuetracker.google.com/savedsearches/566234 Google Apps Scriptの障害時は IssueTracker に課題が上がっていることが...