0
var script = document.createElement("script");
script.type = "text/javascript";
script.defer = true;
script.text = "alert(1)";
document.getElementById("myContent").appendChild(script);
上面的代碼可以單獨使用,但不適用於App Script Web應用程序。 caja在這裏扮演一些角色嗎?在Google Apps腳本網絡應用程序中動態插入腳本?
有沒有解決此問題的解決方法? –
包括作爲外部js就像你會用jQuery一樣 –