input type = "number"소수점 뒤에 두 자리 유지
10575 단어 프런트 엔드
<input type="number" class="number">
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js">script>
<script type="text/javascript">
$(function() {
$('.number').change(function() {
let val = parseFloat($(this).val());
if (isNaN(val)) {
val = 0;
}
$(this).val(val.toFixed(2));
});
});
script>
관련: Bootstrap TouchSpin
input type = "number"제어 소수점 비트 관련 자료를 볼 때 관련 플러그인이 괜찮습니다.
<input type="number" class="number">
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js">script>
<script type="text/javascript" src="jquery.bootstrap-touchspin.js">script>
<script type="text/javascript">
$(function() {
$(".number").TouchSpin({
min: 0,
max: 100,
step: 0.1,
decimals: 2,
boostat: 5,
maxboostedstep: 10,
postfix: '%'
});
});
script>
Settings:
OPTION
DEFAULT
DESCRIPTION
initval
“”
Applied when no explicit value is set on the input with the value attribute. Empty string means that the value remains empty on initialization.
min
0
Minimum value.
max
백
Maximum value.
step
일
Incremental/decremental step on up/down change.
forcestepdivisibility
‘round’
How to force the value to be divisible by step value: ‘none’
decimals
0
Number of decimal points.
stepinterval
백
Refresh rate of the spinner in milliseconds.
stepintervaldelay
500
Time in milliseconds before the spinner starts to spin.
verticalbuttons
false
Enables the traditional up/down buttons.
verticalupclass
‘glyphicon glyphicon-chevron-up’
Class of the up button with vertical buttons mode enabled.
verticaldownclass
‘glyphicon glyphicon-chevron-down’
Class of the down button with vertical buttons mode enabled.
prefix
“”
Text before the input.
postfix
“”
Text after the input.
prefix_extraclass
“”
Extra class(es) for prefix.
postfix_extraclass
“”
Extra class(es) for postfix.
booster
true
If enabled, the the spinner is continually becoming faster as holding the button.
boostat
십
Boost at every nth step.
maxboostedstep
false
Maximum step when boosted.
mousewheel
true
Enables the mouse wheel to change the value of the input.
buttondown_class
‘btn btn-default’
Class(es) of down button.
buttonup_class
‘btn btn-default’
Class(es) of up button.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Vue.js】컴포넌트의 3개의 네비게이션 가드일에서 사용하게 되었기 때문에 1부터 Vue.js에 대해 배웠다. 그 이름에서 알 수 있듯이 무언가를 가드하기위한 처리로, 대체로 페이지 천이 전에 특정 처리를 실행시켜 페이지 천이시키지 않게 한다. Vue.js의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.