Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

11.6. from 表单相关事件

11.6.1. onblur

转换为小写字母

			
<input type="text" id="email" name="form.email" value="${form.email}" onblur="this.value = this.value.toLowerCase();" maxlength="30" class="" tabindex="94"/>