冒頭に「$」記号を含むテキスト入力フィールドが必要です。フィールドにどのような編集が行われても、記号は永続的です。
入力に使用できるのは数字だけであればいいのですが、それは単なる素晴らしい追加です。
境界線のない入力フィールドの周囲に境界線を持つスパンを使用して、固定のプレフィックスまたはサフィックスを持つ入力フィールドをシミュレートすることを検討してください。基本的なキックオフの例を次に示します。
.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;
}
受け入れられた答えとは異なり、これは入力検証の強調表示(エラーがある場合の赤い境界線など)を保持します。
入力フィールドをスパンにラップして、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;
}
Updateユーロ記号をテキストボックスの左側または右側に配置する場合。作業中 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;
}
次を出力します。
注:コードはすべて1行である必要があります。最新のブラウザではサポートはかなり良好ですが、必ずテストしてください。
テキスト入力フィールド内ではなく、テキスト入力フィールドの前に「$」を入力します。送信後に「$」を解析する必要がないため、数値データの検証がはるかに簡単になります。
JQuery.validate() (またはその他)を使用すると、通貨を処理するクライアント側の検証ルールを追加できます。これにより、入力フィールド内に「$」を含めることができます。ただし、セキュリティのためにサーバー側の検証を行う必要があるため、「$」を削除する必要があります。
$<input name="currency">
入力前に:beforeを使用し、コンテンツとして$を渡しました
input{
margin-left: 20px;
}
input:before {
content: "$";
position: absolute;
}
Safariのみをサポートする必要がある場合は、次のようにできます。
input.currency:before {
content: attr(data-symbol);
float: left;
color: #aaa;
}
そして、次のような入力フィールド
<input class="currency" data-symbol="€" type="number" value="12.9">
これにより、追加のタグを必要とせず、マークアップにシンボル情報を保持できます。
結局、型が数値のままである必要があるため、絶対位置を使用して入力フィールドにドル記号をプッシュするためにCSSを使用しました。
<div>
<span style="position: absolute; margin-left: 1px; margin-top: 1px;">$</span>
<input type="number" style="padding-left: 8px;">
</div>
私が好む別の解決策は、通貨記号の画像に追加の入力要素を使用することです。検索テキストフィールド内で虫眼鏡の画像を使用する例を次に示します。
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;
}
これにより、左側のサイドバーに入力が表示されます。
<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>
%
入力フォーム上の他のテキストフィールドと左の境界線を揃えることに関心がある場合、これらの回答はどれも役に立ちません。
ドル記号を、入力ボックスの内側と外側のどちらに配置するかに応じて、-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>