私はjavascriptでいくつかのことを試しましたが、私のサイトでは何も動作していないようです。私はフォームを提出するときに警告ポップアップを持っています。これは私がこれはウェブサイトであるウェブサイトでJavaScriptのアラートが機能しない
<form>
Name:<br>
<input type="text" name="name" required><br>
Email:<br>
<input type="email" name="email" required><br>
Phone (Format: 999-999-9999):<br>
<input type="tel" name="phone" required pattern="\d{3}[\-]\d{3}[\-]\d{4}"><br>
Nature of comment:<br>
<input type="checkbox" name="comment" value="Question"> Question
<input type="checkbox" name="comment" value="Business Inquiry"> Business Inquiry
<input type="checkbox" name="comment" value="Comment"> Comment
<input type="checkbox" name="comment" value="Other"> Other <br>
Comment:<br>
<textarea></textarea><br>
<input type="submit" value="Submit">
<form onsubmit="return confirm('Do you really want to submit the form?');">
</form>
持っているものです:あなたは、ほとんどがあったhttp://webpages.uncc.edu/~kjardine/MC_Portfolio/contact.html
トップフォーム要素にonsubmitを配置してみてください。 –
あなたのHTMLは無効です。フォーム要素は入れ子にしてはいけません。内側のフォームには終了タグはありません。 –
それだけです!ありがとうございました! –