how to redirect users after completing a embedded google form [duplicate]

随声附和 提交于 2021-02-10 08:59:07

问题


I have embedded a google form in one of my pages and it will collect the users : firstname , lastname and email address. but once the user submits the form. They will be redirected to the confirmation page after submitting the form.

How do I redirect the completion of the form on 'submit' to another html page? not a php file? Thanks


回答1:


Use my this man: Hope it help

      <script>
      var dynamic = 'http://www.google.com';
      </script>

      <input type="submit" value = "submit" target="_blank" onclick="window.open(dynamic)" >


来源:https://stackoverflow.com/questions/21819530/how-to-redirect-users-after-completing-a-embedded-google-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!