前提・実現したいこと
Googleフォームを自作フォーム(HTML)に紐づけしたい
発生している問題・エラーメッセージ
ちゃんとaction名とname名を打ち込んだのに、送信ボタンを押しても、
送信完了画面に切り替わらない。
該当のソースコード
html
1<div id="form" class="form-contents"> 2 <div class="form-wrapper aos-init aos-animate" data-aos="fade-up"> 3 <div class="works-title section-title" data-aos="fade-up"> 4 <h2 class="works-title__h2 section-title__h2">お問い合わせ</h2> 5 <span class="works-title__span section-title__span">Contact</span> 6 </div> 7 <form action="https://docs.google.com/forms/u/0/d/e/1FAIpQLSegK7z3ZBmE23LtQgyGups3FSeaunuTgQZAYM_G8g6ofzMhCw/formResponse" target="_self" method="POST" id="mG61Hd" class="form"> 8 9 <div class="form__label-wrapper"><label for="name" class="label">お名前</label><span class="form__span">必須</span></div> 10 <input type="text" name="entry.739109770" id="name" class="name" placeholder="お名前"> 11 12 <div class="form__label-wrapper"><label for="email" class="label">メールアドレス</label><span class="form__span">必須</span></div> 13 <input type="email" name="entry.2059125233" class="email" id="wmail" placeholder="メールアドレス"> 14 15 <div class="form__label-wrapper"> <label for="textarea" class="label">お問い合わせ内容</label><span class="form__span">必須</span></div> 16 <textarea id="textarea" class="textarea" name="entry.1298007590" placeholder="お問い合わせ内容"></textarea> 17 18 <input type="submit" name="" id="submit" class="submit contact-btn" value="送信する"> 19 </form> 20 21 </div> 22</div>
試したこと
このサイトの通りにやりました。
https://lacublog.com/google-form
補足情報(FW/ツールのバージョンなど)
Windows10PCを利用しております。
あなたの回答
tips
プレビュー