-2
この質問は何回か尋ねられましたが、私は少なくとも6つの解決策を試してみましたが、うまくいきません。 Googleフォームに送信するデータを収集していますが、フォーム提出時にブラウザは成功ページにリダイレクトされます。私はすべてAJAXを使用して起こるが、私のコードはうまくいかない。リダイレクト時にフォームを停止する
HTML:
<form id="userinfo" method="get" action="https://script.google.com/macros/s/xxx/exec" accept-charset="UTF-8" onsubmit="return false">
<input type="text" name="name" id="formname" placeholder="Name">
<input type="text" name="email" id="formemail" placeholder="Email">placeholder="Game Days">
<input type="submit" value="submit" id="upload_data"/>
</form>
JS:
$("#userinfo").submit(function(e) {
var urll = "https://script.google.com/macros/s/xxx/exec"; // the script where you handle the form input.
$.ajax({
type: "GET",
url: urll,
data: $("#userinfo").serialize(), // serializes the form's elements.
success: function(data)
{
alert(data); // show response from the php script.
}
});
e.preventDefault(); // avoid to execute the actual submit of the form.
});
最初のエラーは、通常のsumbitがために発生doens'tのjavascriptの処理を停止する発生した場合ように、あなたが最初の行にデフォルトのアクションを防ぐ必要がありますそれはすでに防止されています。 –