GASを動的なHTML出力をする時には、doGetメソッド内でcreateHTMLを利用すればいいのですが、ハイパーリンクを利用するときには注意が必要です。createHTMMLの中にアンカータグを入れてもダメです。無視されます。ハイパーリンク(アンカータグ)を追加したいときは、createAnchorを使います。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doGet(e) { | |
var app = UiApp.createApplication(); | |
var url = "http://www.ochi-lab.org"; | |
var flow = app.createVerticalPanel(); | |
flow.add(app.createAnchor("Goto Lab", url)); | |
var html = app.createHTML("<div style='background-color : #f0f0f0'><pre>"+"あああああ"+"</pre></div>"); | |
flow.add(html); | |
app.add(flow); | |
return app; | |
} |
0 件のコメント:
コメントを投稿