Answers:
考虑使用无边界输入字段周围带有边框的跨度来模拟具有固定前缀或后缀的输入字段。这是一个基本的启动示例:
.currencyinput {
border: 1px inset #ccc;
}
.currencyinput input {
border: 0;
}
<span class="currencyinput">$<input type="text" name="currency"></span>
使用父.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>
将图标与transform
和垂直对齐top
,并设置pointer-events
为none
,以使单击集中在输入上。调整padding
和width
适当:
.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;
}
与接受的答案不同,这将保留输入验证突出显示,例如出现错误时显示为红色边框。
float:left
到input-symbol
div
input-symbol
容器外面有一个单独的按钮
float
很糟糕,所以我现在使用display:inline-block
结合vertical-align:bottom
:)虽然我不能快速
您可以将输入字段包装为一个范围,即您position:relative;
。然后,添加
:before
content:"€"
您的货币符号并制作它position:absolute
。工作中的JSFiddle
的HTML
<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;
}
更新 如果要在文本框的左侧或右侧放置欧元符号。工作中的JSFiddle
的HTML
<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;
}
既然你不能做::before
与content: '$'
投入和增加绝对定位的元素增加了额外的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;
}
它输出以下内容:
注意:代码必须全部在一行上。在现代浏览器中,该支持相当不错,但请务必进行测试。
background-repeat: no-repeat;
了$,因为在输入框中重复了$。
background-image
可能不被支持,或者浏览器可以呈现窗口小部件本身,而不是使用系统提供的窗口小部件。
将“ $”放在文本输入字段的前面,而不是它的内部。它使对数字数据的验证变得容易得多,因为您不必在提交后解析“ $”。
您可以使用JQuery.validate()(或其他)添加一些处理货币的客户端验证规则。这样一来,您就可以在输入字段中输入“ $”。但是您仍然必须进行服务器端验证以确保安全性,这使您回到必须删除“ $”的位置。
如果只需要支持Safari,则可以这样做:
input.currency:before {
content: attr(data-symbol);
float: left;
color: #aaa;
}
和一个输入字段
<input class="currency" data-symbol="€" type="number" value="12.9">
这样,您就不需要多余的标签并将符号信息保留在标记中。
我更喜欢的另一种解决方案是对货币符号的图像使用附加的输入元素。这是一个在搜索文本字段中使用放大镜图像的示例:
的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;
}
这将导致在左侧栏上的输入:
我只是用:before输入,并通过$作为内容
input{
margin-left: 20px;
}
input:before {
content: "$";
position: absolute;
}
.currencyinput {
border: 1px inset #ccc;
padding-bottom: 1px;//FOR IE & Chrome
}
.currencyinput input {
border: 0;
}
<span class="currencyinput">$<input type="text" name="currency"></span>
如果您担心将左边框与输入表单上的其他文本字段对齐,那么这些答案都将无济于事。
我建议将美元符号绝对定位在-10px或5px的左侧(取决于您要在输入框内还是输入框外)。内部解决方案要求输入CSS上的direction:rtl。
您也可以在输入中添加填充,以避开direction: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>
<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>
%
.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>