私はシンプルなフォームを持っています。送信時(送信アクションはGoogleドキュメントフォームの送信です)、そのページに注目して新しいページが表示されます。私は現在のページに焦点を当てたい。フォーム新しいページを作成する
私のオプションは何ですか?
これは、コード(hereも存在)
<html><body>
<form action="https://docs.google.com/a/rangde.org/spreadsheet/formResponse?formkey=dFlSZkt0TzZTWHJyblBiQlNrcmZvZGc6MQ" method="POST" id="ss-form" target="_blank" onsubmit="submitted=true;">
<br>
<input type="text" name="entry.0.single" value="" class="ss-q-short" id="entry_0" placeholder="Your Name">
<br>
<input type="text" name="entry.1.single" value="" class="ss-q-short" id="entry_1" placeholder="E-mail Address">
<br>
<input type="text" name="entry.2.single" value="" class="ss-q-short" id="entry_2" placeholder="Pledge Amount">
<br>
<input type="submit" name="submit" value="Submit"></form>
</body>
</html>
ここで私の問題の甘い解決策が見つかりました:http://stackoverflow.com/questions/4351188/can-i-submit-form-info-to-google-spreadsheets-with-jquerys-ajax –