我已經嘗試了幾個不同的東西在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無效。表單元素不應嵌套,並且內部表單無論如何都沒有結束標記。 – 2017-03-15 22:28:22
就是這樣!謝謝! –