带货币符号的 HTML 文本输入字段

我希望有一个文本输入字段,在最开始包含“ $”符号,并且无论该字段发生什么编辑,该符号都是持久的。

I would be good if only numbers were accepted for input, but that's just a fancy addition.

270467 次浏览

将“ $”放在文本输入字段的前面,而不是放在其中。它使数值数据的验证更加容易,因为在提交之后不必解析“ $”。

您可以使用 JQuery.valid()(或其他)添加一些处理货币的客户端验证规则。这将允许您在输入字段中使用“ $”。但是您仍然需要进行服务器端验证以确保安全性,这使您又回到了必须删除“ $”的位置。

考虑使用无边框输入字段周围带有边框的 span 来模拟具有固定前缀或后缀的输入字段。下面是一个基本的例子:

.currencyinput {
border: 1px inset #ccc;
}
.currencyinput input {
border: 0;
}
<span class="currencyinput">$<input type="text" name="currency"></span>

Another solution which I prefer is to use an additional input element for an image of the currency symbol. Here's an example using an image of a magnifying glass within a search text field:

html:

<input type="image" alt="Subscribe" src="/graphics/icons/search-button.png">
<input type="text" placeholder="Search" name="query">

Css:

#search input[type="image"] {
background-color: transparent;
border: 0 none;
margin-top: 10px;
vertical-align: middle;
margin: 5px 0 0 5px;
position: absolute;
}

这会导致在左侧栏输入:

Https://fsfe.org

使用父 .input-icon div。可选地添加 .input-icon-right

<div class="input-icon">
<input type="text">
<i>$</i>
</div>


<div class="input-icon input-icon-right">
<input type="text">
<i>€</i>
</div>

将图标与 transformtop垂直对齐,并将 pointer-events设置为 none,以便单击将焦点集中在输入上。适当调整 paddingwidth:

.input-icon {
position: relative;
}


.input-icon > i {
position: absolute;
display: block;
transform: translate(0, -50%);
top: 50%;
pointer-events: none;
width: 25px;
text-align: center;
font-style: normal;
}


.input-icon > input {
padding-left: 25px;
padding-right: 0;
}


.input-icon-right > i {
right: 0;
}


.input-icon-right > input {
padding-left: 0;
padding-right: 25px;
text-align: right;
}

与已接受的答案不同,这将保留输入验证高亮显示,例如出现错误时的红色边框。

JSFiddle 使用 Bootstrap 和 Font Awesome 的例子

如果你只需要支持 Safari,你可以这样做:

input.currency:before {
content: attr(data-symbol);
float: left;
color: #aaa;
}

和一个输入字段,如

<input class="currency" data-symbol="€" type="number" value="12.9">

这样,您就不需要额外的标记,并将符号信息保留在标记中。

您可以将输入字段包装成一个 span,这个 span 是 position:relative; 把你的货币符号改成 position:absolute

超文本标示语言

<span class="input-symbol-euro">
<input type="text" />
</span>

CSS

.input-symbol-euro {
position: relative;
}
.input-symbol-euro input {
padding-left:18px;
}
.input-symbol-euro:before {
position: absolute;
top: 0;
content:"€";
left: 5px;
}

更新 如果要将欧元符号放在文本框的左侧或右侧,请选择。工作 < a href = “ https://JSFiddle.net/muffls/ky5bcshp/53/”rel = “ norefrer”> JSFiddle

超文本标示语言

<span class="input-euro left">
<input type="text" />
</span>
<span class="input-euro right">
<input type="text" />
</span>

CSS

 .input-euro {
position: relative;
}
.input-euro.left input {
padding-left:18px;
}
.input-euro.right input {
padding-right:18px;
text-align:end;
}


.input-euro:before {
position: absolute;
top: 0;
content:"€";
}
.input-euro.left:before {
left: 5px;
}
.input-euro.right:before {
right: 5px;
}

因为你不能用 content: '$'::before输入,并添加一个绝对定位的元素添加额外的 html-我喜欢做一个背景 SVG 内联 css。

大概是这样的:

input {
width: 85px;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' width='85px'><text x='2' y='13' fill='gray' font-size='12' font-family='arial'>$</text></svg>");
padding-left: 12px;
}

It outputs the following:

svg dollar sign background css

注意: 代码必须都在一行中。支持在现代浏览器中非常好,但是一定要测试。

用于启动它的工作

<span class="form-control">$ <input type="text"/></span>

不要在输入字段中使用 class = “ form-control”。

.currencyinput {
border: 1px inset #ccc;
padding-bottom: 1px;//FOR IE & Chrome
}
.currencyinput input {
border: 0;
}
<span class="currencyinput">$<input type="text" name="currency"></span>

如果您关心的是将左边框与输入表单上的其他文本字段对齐,那么这些答案都没有实际帮助。

I'd recommend positioning the dollar sign absolutely to the left about -10px or left 5px (depending whether you want it inside or outside the input box). The inside solution requires direction:rtl on the input css.

您还可以向输入添加填充,以避免使用方向: rtl,但是这会改变输入容器的宽度,使其与其他相同宽度的容器不匹配。

<div style="display:inline-block">
<div style="position:relative">
<div style="position:absolute; left:-10px;">$</div>
</div>
<input type='text' />
</div>

或者

<div style="display:inline-block">
<div style="position:relative">
<div style="position:absolute; left:5px;">$</div>
</div>
<input type='text' style='direction: rtl;' />
</div>

https://i.imgur.com/ajrU0T9.png

例子: https://plnkr.co/edit/yshyuRMd06K1cuN9tFDv?p=preview

是的,如果你使用自举,这将工作。

.form-control input {
border: none;
padding-left: 4px;
}

还有

<span class="form-control">$ <input type="text"/></span>

我最终需要类型仍然作为一个数字保留,所以使用 CSS 将美元符号推到输入字段使用绝对位置。

<div>
<span style="position: absolute; margin-left: 1px; margin-top: 1px;">$</span>
<input type="number" style="padding-left: 8px;">
</div>

我只是使用: before 作为输入,并传递 $作为内容

input{
margin-left: 20px;
}
input:before {
content: "$";
position: absolute;
}
.currencyinput {
border: 1px inset #ccc;


border-left:none;
}
.currencyinput input {
border: 0;`enter code here`
}


<input type="text" oninput="this.value = this.value.replace(/[^0-9]/.g, ''); this.value = this.value.replace(/(\..*)\./g, '$1');" style="text-align:right;border-right:none;outline:none" name="currency"><span class="currencyinput">%</span>

<style>
.currencyinput {
border: 1px inset #ccc;
    

border-left:none;
}
.currencyinput input {
border: 0;
}
</style>
<!DOCTYPE html>
<html>
<head>


</head>
<body>


<input type="text" oninput="this.value = this.value.replace(/[^0-9]/.g, ''); this.value = this.value.replace(/(\..*)\./g, '$1');" style="text-align:right;border-right:none;outline:none" name="currency"><span class="currencyinput">%</span>
</body>
</html>

%

试试这个

<label style="position: relative; left:15px;">$</label>
<input type="text" style="text-indent: 15px;">