gpt4 book ai didi

javascript - 键入时保留输入的占位符文本

转载 作者:行者123 更新时间:2023-11-28 14:22:23 24 4
gpt4 key购买 nike

我有这个输入:

  <input type="number" class="textfield numberField font"  name="Price" placeholder="Price"><br>

因此文本占位符价格。当用户开始输入时,我想保留“价格”一词。

因此,如果他输入 65,他将在输入中看到:

Price 65

我是否需要在内部为单词 price 创建另一个 div,或者可以使用 js 或 html 来完成吗?

最佳答案

我想你也想成为那样的人。

  
.full-input {
display: inline-block;
padding: 3px;
border: 2px solid blue;
}
input {
outline: none;
border: none;
display: inline-block;
line-height: 1.2em;
font-size: 14pt;
}
label {
display: inline-block;
font-size: 12px;
color: blue;
}
<div class='full-input'><label for='price'>Price</label>
<input type='number'class="textfield numberField font" name="Price">
</div>

关于javascript - 键入时保留输入的占位符文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54777500/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com