Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想像乌尔都语一样以相反的顺序在文本框中输入。是否有任何输入 属性或任何代码?方向:rtl;仅从结尾开始,但输入文本在原处。它不会 在文本框中反向查找。
只需使用简单的 CSS
input[type=text] { text-align: right; }
演示
更新:
input[type=text] { direction: rtl; unicode-bidi: bidi-override; }