简体   繁体   中英

Dynamically inserting script in Google Apps Script web app?

 var script = document.createElement("script");
 script.type = "text/javascript";
 script.defer = true;
 script.text = "alert(1)";
 document.getElementById("myContent").appendChild(script);

Above code works well separately, but does not work in App Script web app. Does caja plays some role here ?

Yes caja plays a role. You cannot inject or self modify the js.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM