我是菜鸟的定义,我不知道我在做什么。我必须使用 javascript 创建一个函数来对表单中的“名称”字段执行验证。检查将查看是否输入了任何内容或名称是否包含数字。最重要的是,我必须使用 onchange 事件。我尝试搜索,我得到了答案,我看到答案中有 jquery 代码,我不能在这个问题中使用它。我不知道该怎么做,有人可以帮忙吗?这是我正在使用的表格
<form method="get">
<label for="name">Name</label>
<input type="text" id="name" placeholder="Name" onChange="" >
<br>
<label for="age">Age</label>
<input type="age" id="age" placeholder="Age">
<br>
<label for="location">Location</label>
<input type="location" id="location" placeholder="Location">
<br>
<button type="submit">Submit</button>
</form>