jquery字母大小写转换
1、大写转小写
"ABC".toLowerCase()//转小写
toLowerCase() 方法用于把字符串转换为小写。
2、小写转大写
"abc".toUpperCase()//转大写
toUpperCase() 方法用于把字符串转换为大写。
使用案例:
输入框失去焦点时,将内容转换为大写
<div id="app" >
<input type="text" id="in">
</div>
<script>
$('#in').blur(function() {
$(this).val($(this).val().toUpperCase());
});
</script>
