gpt4 book ai didi

javascript - 在 K、Lacs、Crore 中格式化数字

转载 作者:搜寻专家 更新时间:2023-10-31 22:07:00 25 4
gpt4 key购买 nike

我想在 jQuery 中使用 k、lacs、crores 将数字格式化为它们旁边的数字:

1000 到 1K

1500 到 1.5K

100000 至 1Lac

150000 至 1.5Lac

1000000 至 10Lac

10000000 到 1cr 等等!

<!DOCTYPE html>
<html>
<head>
<title>Number Differentiation</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(e){
$('#numbr').bind('keypress', function (e) {
return (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57) && e.which != 46) ? false : true;
});
$("#submitBut").click(function(e){

alert(numDifferentiation( $("#numbr").val()))
})
function numDifferentiation($val){
return $val;
}
})
</script>
</head>
<body>
<input id="numbr" type="text"/>
<button id="submitBut">Click</button>
</body>
</html>

最佳答案

应该这样做:

function numDifferentiation(val) {
if(val >= 10000000) val = (val/10000000).toFixed(2) + ' Cr';
else if(val >= 100000) val = (val/100000).toFixed(2) + ' Lac';
else if(val >= 1000) val = (val/1000).toFixed(2) + ' K';
return val;
}

关于javascript - 在 K、Lacs、Crore 中格式化数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21778327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com