HTML文本输入字段与货币符号

时间:2010-05-26 13:14:51

标签: html text field currency persistent

我想在一开始就有一个包含“$”符号的文本输入字段,无论字段发生什么编辑,标记都是持久的。

如果只接受输入数字,我会很好,但这只是一个奇特的补充。

17 个答案:

答案 0 :(得分:92)

考虑使用带有无边框输入字段边框的跨度来模拟具有固定前缀或后缀的输入字段。这是一个基本的启动示例:

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

答案 1 :(得分:51)

使用父.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 usage example with Bootstrap and Font Awesome

答案 2 :(得分:28)

您可以将输入字段包装到范围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;
 }

答案 3 :(得分:16)

由于您无法在输入上使用::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;
}

输出以下内容:

svg dollar sign background css

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

答案 4 :(得分:3)

将'$'放在文本输入字段的前面,而不是在其中。它使得对数字数据的验证变得更加容易,因为您不必在提交后解析出'$'。

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

答案 5 :(得分:2)

答案 6 :(得分:2)

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

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

之类的输入字段

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

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

答案 7 :(得分:1)

尝试一下

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

答案 8 :(得分:1)

我更喜欢的另一个解决方案是为货币符号的图像使用额外的输入元素。以下是在搜索文本字段中使用放大镜图像的示例:

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

答案 9 :(得分:0)

如果您担心将左边框与输入表单上的其他文本字段对齐,这些答案都无济于事。

我建议将美元符号绝对放在左边大约-10px或左边5px(取决于你是否想要它在输入框的内部或外部)。内部解决方案需要方向:输入css上的rtl。

您还可以在输入中添加填充以避免方向: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

答案 10 :(得分:0)

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

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

答案 11 :(得分:0)

我只是在输入之前使用了:before,并通过$作为内容

input{ 
   margin-left: 20px;
 }
input:before {
  content: "$";
  position: absolute;
}

答案 12 :(得分:0)

<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>

答案 13 :(得分:-1)

对于bootstrap,它的作品

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

不要使用class =&#34; form-control&#34;在输入字段中。

答案 14 :(得分:-1)

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

答案 15 :(得分:-1)

是的,如果您使用的是引导程序,则可以使用。

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

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

答案 16 :(得分:-1)

.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>