如何自动覆盖所选内容?
我在html表中有一个文本框。在那里我使用了以下ng-pattern来获得2个小数位。
ng-pattern="/^(?:(?=[1-9])([0-9]+(\.[0-9]{1,7}){0,1})|(?=[0-0])(0+\.[0-9]{0,1}[1-9]([0-9]*)))$/"
当文本框中有一个带有两个小数的值并且我试图选择该值并在其上键入内容时,先前的内容不会被删除。
答案 0 :(得分:0)
使用onfocus="this.value='';"
始终清除该字段。
ex-:
<input type="text" onfocus=" { this.value = ''; }" value="value" />