Formspree
(これはすごいです):私はすべてのフィールドを必須に設定しています。手作業で試してみると、すべてを正しく入力せずにフォームを送信することはできませんが、来る。誰もこれを経験したことがありますか?空白のHTMLフォームの送信を回避するにはどうすればよいですか?
ありがとうございます!
<form action="https://formspree.io/XXXXXXXX" method="post">
<input name="_gotcha" style="display: none" type="text">
<input class="form-control input-lg" name="firstname" placeholder="First Name" required type="text">
<input class="form-control input-lg" name="lastname" placeholder="Last name" required type="text">
<input class="form-control input-lg" name="phone" placeholder="Phone number" required type="text">
<select required name="country" class="form-control input-lg" style="border-radius:none; -webkit-appearance: none; padding-top:0px;">
<option value="" disabled selected>Please select your country </option>
<option value="Afganistan">Afghanistan</option>
<option value="Albania">Albania</option>
<option value="other">Not in the List</option>
<!-- etc -->
</select>
<input type="hidden" name="referrer" id="referrer_field" />
<input type="hidden" name="url" id="url_field" />
<button id="demo" type="submit">GO</button>
共有してください、あなたのコードのW3Schoolsの例を試してみてください。 – Abhijeet
Sryで作業するためのコードなしでは手助けできません。 –
のコードスニペットを使用しているサーバーサイドフレームワークに追加しました。フィールドのnull値を取得しているサーバー側のコードを追加できますか? – Abhijeet