你好我需要在用户切换到另一个html input type='text'
后自动触发输入按钮。我需要这样做,以便我可以验证表格。
这是我的代码:
<input type="text" class="form-control input-sm" name="student_lastname" placeholder="Last Name" pattern="[A-Za-z].{1,}" title="Only Letters are accepted and more than 1 letter" required>
我需要在用户输入框中时弹出错误title="Only Letters are accepted and more than 1 letter"
现在这是我的代码看起来像
答案 0 :(得分:0)
onblur
是完美的解决方案,专门针对用户离开输入字段而制作。做这样的事情:
对于HTML:
<input type="text" onblur="validate()" />
对于JS:
function validate() {
// This is how you automatically make them click the Enter button:
enterButton.click();
}