■ サイドバー側
<html>
<head>
<script>
function hogehoge() {
var inputText = document.getElementById("idInputText");
google.script.run.hoge(inputText .value);
}
</script>
</head>
<body>
<label>hogehoge</label>
<input type="text" id="idInputText">
<button onclick="hogehoge()">ほげほげ</button>
</body>
</html>
■ GAS側
function hoge(input) {
if(input == 'OK') {
..... OKの処理
}
else {
..... OK以外の処理
}
}
--
No comments:
Post a Comment