input input box, lowercase to uppercase, use keyup, but when you move the mouse in the middle, after entering one, the cursor automatically jumps to the end
<input name="htmer" type="text" onkeyup="this.value=this.value.toUpperCase()" />
could you tell me how to solve this?