<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>数字货币到中文货币的转换</title>
<script language="javascript">
function convert(){
var num = document.getElementById("num").value;
if(num > 1000000000000000000) {
alert("您输入的数字太大,重新输入!");
return;
}
var monee = Math.round(num*100).toString(10)
var i,j;
j=0;
var leng = monee.length;
var monval="";
for( i=0;i<leng;i++)
{
monval= monval+to_upper(monee.charAt(i))+to_mon(leng-i-1);
}
repace_acc(monval);
}
function to_upper( a){
switch(a){
case '0' : return '零'; break;
case '1'
JS中手动把数字货币转化为中文大写方法
最新推荐文章于 2023-07-08 17:30:20 发布
本文介绍如何在JavaScript中将数字货币数值手动转换为中文大写形式,适用于财务报告或会计系统的开发,详细讲解了数字到中文大写的转换逻辑和示例代码。
摘要由CSDN通过智能技术生成