我已经阅读了几个答案,但都没有一个能解决我的问题。 我有一个html输入字段,并使用“ ..”(这是五个空格,两个句点)预先填充了值。
当这出现在屏幕上时,前导空格将被压缩,并且输入将显示“ ..”。我设置为“空白:前置;”在样式属性中,但这不能解决问题。
<input type="text" name="field_53_13" id="field_53_13"
class="h3270-input"
style="width:51.309998px; height: 15px; white-space: pre;"
value=".." maxlength="7" size="7">
答案 0 :(得分:-1)
尝试...
<input type="text" name="field_53_13" id="field_53_13"
class="h3270-input"
style="width:51.309998px; height: 15px; white-space: pre;"
value=" .." maxlength="7" size="7">
不间断空格(&nbsp):https://www.computerhope.com/jargon/n/nbsp.htm