直到上周,我可以使用以下 html 将用户重定向到另一个页面,但是从这个星期一开始,这段代码停止在 gas 中工作(仍然在 caja-playground 中工作,所以 caja 一定不是问题的根源)。
任何想法为什么会这样?
<html>
<body>
<form action="www.url.com" id='redirect' method='get'>
<input type='hidden' name='type' value='hi'>
<script>
document.getElementById('redirect').submit();
</script>
</form>
</body>
</html>