$(“#beLowerCase”).on(‘input’, function(){
// store current positions in variables var start = this.selectionStart, end = this.selectionEnd; this.value = this.value.toLowerCase(); // restore from variables... this.setSelectionRange(start, end);});
这实际上也适用于CSS:
#beLowerCase{ text-transform:lowercase;}服务器可以照顾实际的下壳体…



