在不使用 jquery或 PHP 的情况下,如何在成功提交表单时触发模式?我正在使用引导程序 5。
我的表单提交正在发送到 Netlify。
<form name="Index Page Form" method="POST" data-netlify="true" netlify-honeypot="hal-check">
<div class="form-floating">
<input type="text" name="name" class="form-control form-control-flush" id="cardName" placeholder="Name" required>
<label for="cardName">Name</label>
</div>
<p class="hidden">
<label>
Fill this out if you're HAL-9000: <input name="hal-check" />
</label>
</p>
<div class="form-floating">
<input type="email" name="email" class="form-control form-control-flush" id="cardEmail" placeholder="Email" required>
<label for="cardEmail">Email</label>
</div>
<div class="form-floating">
<input type="text" name="message" class="form-control form-control-flush" id="cardMessage" placeholder="Message" required>
<label for="cardMessage">What does your business do?</label>
</div>
<div class="mt-6">
<button class="btn w-100 btn-success lift" type="submit">
Send me information
</button>
</div>
</form>