このJavaScriptはname-text
ボックスが空であるかどうかをチェックします。テキストをテキストボックスに追加する方法
空白の場合は、同じ行に「名前が必要です」が追加されている必要があります。
function checkFields(){
var name = document.forms["contact-form"]["name"].value;
if(name == ""){
}
<!--- This is the html code for text box for name and submit button to call checkFields() method -->
<div class="required-fields">
<label>My Name:</label>
<input type="text" name="name"/>
</div>
<input type="button" onclick="checkFields()" value="Send Message"/>
https://developer.mozilla.org/en-US/docs/Web/Guideあなたがアペンドで必要な場合は、いくつかのエラーは、以下のスニペットを参照してください/ HTML/Forms/Data_form_validation – epascarello