質問編集履歴

2

書式の改善

2024/06/28 06:34

投稿

3_April_2021
3_April_2021

スコア48

test CHANGED
@@ -1 +1 @@
1
- ボタンをクリックしてHTMLファイルをiframeに表示することはできますか?
1
+ ボタンをクリックしてiframeにHTMLファイルを表示する方法
test CHANGED
@@ -1,39 +1,19 @@
1
- ## Code
1
+ ボタンをクリックしたときにiframe.htmlを表示したい。
2
2
 
3
- ```html
3
+ ----
4
-
5
- <iframe></iframe><input type="button">
4
+ ボタンをクリックしたときにiframe.htmlを呼び出す方法や、使用するスクリプトレットを尋ねている。
6
-
7
5
  ```
8
-
9
- ```script
6
+ function buttonClick() {
10
-
11
- function doGet(){return HtmlService.createTemplateFromFile("index").evaluate();}
7
+ // ボタンがクリックされたときにiframe.htmlファイルを表示または呼び出す
12
-
8
+ }
13
9
  ```
14
-
15
- ## Action & Question
16
-
17
- ### onclick
18
-
19
- - どのScriptletsを使用する必要がありますか?
20
-
21
- - iframe.htmlを表示/呼び出すはどうればよいですか?
10
+ iframe.htmlは同じプロジェクト内存在るHTMLファイルです
22
-
23
- ```html
24
-
25
- <input type="button" onclick= /* call function iframe() */>
26
-
27
11
  ```
28
-
29
- ```script
30
-
31
- function iframe(){
12
+ function doGet() {
32
-
33
- // display or call HTML file iframe.html* when clicked
13
+ return HtmlService.createTemplateFromFile("index").evaluate();
34
-
35
14
  }
36
-
37
- // *iframe.htmlは、同じプロジェクトに存在するHTMLファイルです
38
-
39
15
  ```
16
+ ```
17
+ <iframe></iframe>
18
+ <input type="button" onclick="buttonClick()">
19
+ ```

1

### onclick

2021/04/04 05:03

投稿

3_April_2021
3_April_2021

スコア48

test CHANGED
File without changes
test CHANGED
@@ -13,6 +13,8 @@
13
13
  ```
14
14
 
15
15
  ## Action & Question
16
+
17
+ ### onclick
16
18
 
17
19
  - どのScriptletsを使用する必要がありますか?
18
20