html5入力フィールドが空であるかどうかを確認するにはどうすればよいですか?私は、必要なテキスト入力を使用して与えられたネイティブの検証メッセージを無効にしようとしています。入力フィールドがhtml5とjavascriptで空であるかどうかを確認します
これは私のコードは、今どのように見えるかです:ぼかしリスナーにあなたのコードをラッピング
<script>
$(document).ready(function(){
H5F.setup(document.getElementById("contact-form"));
var name = document.getElementById("contact-name")
if (name.value === "") {
name.setCustomValidity("Please fill out the field with your name");
}
});
</script>
リンクは死んでいます.. – ammarx