私はJSが初めてです!これは私の最初のプログラムです。テキスト フィールドが null であってはならないことを検証します。私はすべてを試しましたが、何もうまくいかないようです。
<script type="text/javascript">
var data_age = document.getElementById("ages") ;
function check() {
if (data_age==null) {
alert("no data") ;
return false ;
} else {
return true ;
}
}
</script>
<form name="frm" action="a.php" method="post" onsubmit="return check(this)">
<input type="text" name="age" id="ages">
<input type="submit" value="submit">
</form>