键入数字时的结果。
例如: 0.01 0.11 1.11 11.11 ...
你的格式怎么样?首先是美元,然后键入美元?
答案 0 :(得分:0)
问题没有明确说明这是HTML
还是其他用户界面,但我会假设HTML
。要将输入方向从左向右更改为从右向左,您可以使用CSS direction
属性。
示例:
<style type="text/css">
.rtl {
direction: rtl;
}
</style>
<input type="text" id="myfield" class="rtl" />
以下值可用于CSS direction
属性:
ltr The writing direction is left-to-right. This is default
rtl The writing direction is right-to-left.
initial Sets this property to its default value.
inherit Inherits this property from its parent element.