ฉันต้องการให้ช่องป้อนข้อความที่มีเครื่องหมาย "$" อยู่ในตอนต้นและไม่ว่าการแก้ไขจะเกิดขึ้นกับช่องใดเพื่อให้เครื่องหมายยังคงอยู่
ฉันจะดีถ้ายอมรับตัวเลขเท่านั้นสำหรับการป้อนข้อมูล แต่นั่นเป็นเพียงส่วนเสริมที่น่าสนใจ
ฉันต้องการให้ช่องป้อนข้อความที่มีเครื่องหมาย "$" อยู่ในตอนต้นและไม่ว่าการแก้ไขจะเกิดขึ้นกับช่องใดเพื่อให้เครื่องหมายยังคงอยู่
ฉันจะดีถ้ายอมรับตัวเลขเท่านั้นสำหรับการป้อนข้อมูล แต่นั่นเป็นเพียงส่วนเสริมที่น่าสนใจ
คำตอบ:
ลองจำลองช่องป้อนข้อมูลที่มีคำนำหน้าหรือคำต่อท้ายคงที่โดยใช้ช่วงที่มีเส้นขอบรอบช่องป้อนข้อมูลแบบไร้ขอบ นี่คือตัวอย่างการเริ่มต้นพื้นฐาน:
.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
ตอนนี้ :) ฉันไม่สามารถสร้างซอได้อย่างรวดเร็วแม้ว่าจะมี 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
อาจไม่ได้รับการสนับสนุนหรือเบราว์เซอร์อาจแสดงวิดเจ็ตเองแทนที่จะใช้วิดเจ็ตที่ระบบให้มา
ฉันต้องการให้ประเภทยังคงเป็นตัวเลขดังนั้นจึงใช้ CSS เพื่อดันเครื่องหมายดอลลาร์ลงในช่องป้อนข้อมูลโดยใช้ตำแหน่งที่แน่นอน
<div>
<span style="position: absolute; margin-left: 1px; margin-top: 1px;">$</span>
<input type="number" style="padding-left: 8px;">
</div>
ใส่ '$' หน้าช่องใส่ข้อความแทนที่จะอยู่ข้างใน ทำให้การตรวจสอบความถูกต้องของข้อมูลตัวเลขง่ายขึ้นมากเพราะคุณไม่ต้องแยกวิเคราะห์ '$' หลังจากส่ง
คุณสามารถใช้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;
}
สำหรับ bootstrap มันใช้งานได้
<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>
คำตอบเหล่านี้ไม่มีคำตอบใดช่วยได้จริงหากคุณกังวลกับการจัดแนวเส้นขอบด้านซ้ายกับช่องข้อความอื่น ๆ ในแบบฟอร์มป้อนข้อมูล
ฉันขอแนะนำให้วางเครื่องหมายดอลลาร์ไว้ทางซ้ายอย่างแน่นอนประมาณ -10px หรือซ้าย 5px (ขึ้นอยู่กับว่าคุณต้องการให้อยู่ในหรือนอกช่องป้อนข้อมูล) โซลูชันภายในต้องการทิศทาง: rtl บนอินพุต 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
<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>
%
ใช่ถ้าคุณใช้ bootstrap สิ่งนี้จะได้ผล
.form-control input {
border: none;
padding-left: 4px;
}
และ
<span class="form-control">$ <input type="text"/></span>
.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>