js字母大小写转换

小写转大写:<input type="text" name="material.codeName" id="codeName" onkeyup="this.value = this.value.toUpperCase()"/>

大写转小写:<input type="text" name="material.codeName" id="codeName" onkeyup="this.value = this.value.toLowerCase();"/>

你可能感兴趣的:(js,字母大小写转换)