问题描述
- css input标签字体靠右对齐 移动端不方便删除
-
css input标签 字体靠右 在获得焦点时希望光标可以在字体的右边
解决方案
使用selectionStart和selectionEnd属性
<input type="text" style="text-align:right" value="1234566" onclick="this.selectionStart = this.selectionEnd = this.value.length;" />
时间: 2024-09-14 13:38:42