답변:
테두리없는 입력 필드 주위에 테두리가있는 범위를 사용하여 고정 접두사 또는 접미사가있는 입력 필드를 시뮬레이션하는 것이 좋습니다. 다음은 기본적인 킥오프 예입니다.
.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
input-symbol
컨테이너 외부에있는 별도의 버튼을 의미했습니다
float
나쁘기 때문에 지금 display:inline-block
과 함께 사용 하고 vertical-align:bottom
있다. :) 나는 빨리 바이올린을 만들 수 없지만, 내 현재 예제에는 너무 많은 다른 CSS가있다 ;-)
입력 필드를 범위로 래핑 할 수 있습니다 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 () (또는 다른), 핸들 통화 몇 가지 클라이언트 측 유효성 검사 규칙을 추가합니다. 그러면 입력 필드 안에 '$'를 넣을 수 있습니다. 그러나 보안을 위해 여전히 서버 측 유효성 검사를 수행해야하며 '$'를 제거해야하는 위치로 돌아갑니다.
$<input name="currency">
참고 항목 : 텍스트 상자에 대한 입력 제한 : 숫자와 소수점 만 허용
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;
}
그러면 여기 왼쪽 사이드 바에 입력이 나타납니다.
방금 사용했습니다 : 입력 전에 $를 내용으로 전달했습니다.
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>