다음 코드가 있습니다. price_result가 정수와 같으면 10이라고 말하고 소수점 이하 두 자리를 추가하고 싶습니다. 따라서 10은 10.00입니다. 또는 10.6과 같으면 10.60이됩니다. 방법을 잘 모르겠습니다.
price_result = parseFloat(test_var.split('$')[1].slice(0,-1));
다음 코드가 있습니다. price_result가 정수와 같으면 10이라고 말하고 소수점 이하 두 자리를 추가하고 싶습니다. 따라서 10은 10.00입니다. 또는 10.6과 같으면 10.60이됩니다. 방법을 잘 모르겠습니다.
price_result = parseFloat(test_var.split('$')[1].slice(0,-1));
답변:
toFixed () 를 사용 하여 그렇게 할 수 있습니다.
var twoPlacedFloat = parseFloat(yourString).toFixed(2)
var twoPlacedFloat = + parseFloat(yourString).toFixed(2)
float로 변환하는 데 사용
를 사용 toFixed
하면 항상 값을 문자열로 반환합니다. 때로는 코드가 복잡해집니다. 이를 피하기 위해 Number에 대한 대체 방법을 만들 수 있습니다.
Number.prototype.round = function(p) {
p = p || 10;
return parseFloat( this.toFixed(p) );
};
그리고 사용 :
var n = 22 / 7; // 3.142857142857143
n.round(3); // 3.143
또는 간단히 :
(22/7).round(3); // 3.143
0.1 + 0.2 // 0.30000000000000004
같이 수정해야합니다.(0.1+0.2).round() // 0.3
게임과 같은 성능이 필요한 경우 :
Math.round(number * 100) / 100
parseFloat (number.toFixed (2))보다 약 100 배 빠릅니다.
number * 1
내가 왜 🤔을 놓치고 있지 않은가?
숫자를 반환하려면 다른 괄호 레이어를 추가하십시오. 깨끗하게 유지합니다.
var twoPlacedFloat = parseFloat((10.02745).toFixed(2));
var twoPlacedFloat = parseFloat(('2.00').toFixed(2))
오류를 생성합니다.
당신의 목표는 구문 분석 할 수 있으며, 귀하의 의견은 문자 그대로있을 경우에, 당신은을 기대 float
하고 toFixed
그래서 여기를 제공하기 위해 두 가지 간단한 기능은 다음 사항을 제공하지 않습니다 :
function parseFloat2Decimals(value) {
return parseFloat(parseFloat(value).toFixed(2));
}
function parseFloat2Decimals(value,decimalPlaces) {
return parseFloat(parseFloat(value).toFixed(decimalPlaces));
}
parseFloat(parseFloat('10.5').toFixed(2))
반환 10.5
합니다 10.50
. 또한 parseFloat(parseFloat('10.50').toFixed(2))
반환10.5
@ sd 짧은 답변 : JS에서 소수점 뒤에 0이 오는 숫자 데이터 유형 값을 갖는 방법은 없습니다.
긴 대답 : 문자열을 반환하는 JavaScript 의 속성 toFixed
또는 toPrecision
기능입니다. 그 이유는 Number 데이터 유형이 a = 2.00과 같은 값을 가질 수 없기 때문에 항상 소수점 다음에 오는 0을 제거하기 때문입니다. 이것은 Number Datatype의 내장 특성입니다. JS에서 위를 달성하기 위해 우리는 두 가지 옵션이 있습니다
이것을 시도하십시오 (코드의 주석 참조) :
function fixInteger(el) {
// this is element's value selector, you should use your own
value = $(el).val();
if (value == '') {
value = 0;
}
newValue = parseInt(value);
// if new value is Nan (when input is a string with no integers in it)
if (isNaN(newValue)) {
value = 0;
newValue = parseInt(value);
}
// apply new value to element
$(el).val(newValue);
}
function fixPrice(el) {
// this is element's value selector, you should use your own
value = $(el).val();
if (value == '') {
value = 0;
}
newValue = parseFloat(value.replace(',', '.')).toFixed(2);
// if new value is Nan (when input is a string with no integers in it)
if (isNaN(newValue)) {
value = 0;
newValue = parseFloat(value).toFixed(2);
}
// apply new value to element
$(el).val(newValue);
}
간단한 JavaScript, 부동 문자열
var it_price = chief_double($("#ContentPlaceHolder1_txt_it_price").val());
function chief_double(num){
var n = parseFloat(num);
if (isNaN(n)) {
return "0";
}
else {
return parseFloat(num);
}
}
Solution for FormArray controllers
FormArray 양식 빌더 초기화
formInitilize() {
this.Form = this._formBuilder.group({
formArray: this._formBuilder.array([this.createForm()])
});
}
양식 작성
createForm() {
return (this.Form = this._formBuilder.group({
convertodecimal: ['']
}));
}
양식 값을 양식 컨트롤러로 설정
setFormvalues() {
this.Form.setControl('formArray', this._formBuilder.array([]));
const control = <FormArray>this.resourceBalanceForm.controls['formArray'];
this.ListArrayValues.forEach((x) => {
control.push(this.buildForm(x));
});
}
private buildForm(x): FormGroup {
const bindvalues= this._formBuilder.group({
convertodecimal: x.ArrayCollection1? parseFloat(x.ArrayCollection1[0].name).toFixed(2) : '' // Option for array collection
// convertodecimal: x.number.toFixed(2) --- option for two decimal value
});
return bindvalues;
}
다른 해결책이 있습니다.
round()
대신에 사용할 수 있습니다toFixed()
var twoPlacedFloat = parseFloat(yourString).round(2)
parseFloat()
@Nathan @zsalzbank의 답변을 업데이트 한 후 인라인 으로 사용해야합니다.
round()
js의 숫자 와 같은 방법은 없습니다 . 진짜 질문은 누가 이것을지지했는지입니다.