資源描述:
《小寫金額轉(zhuǎn)換成大寫金額的js函數(shù)代碼》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、小寫金額轉(zhuǎn)換成大寫金額的js函數(shù)代碼String.prototype.Trim=function(){returnthis.replace(/(^s*)
2、(s*$)/g,"");}//去空格函數(shù)varorderwebsite=document.getElementById("<%=txtOrderWebSite.ClientID%>").value;orderwebsite=orderwebsite.Trim();varcancelorderwebsite=document.getElementById
3、("<%=txtCancelOrderWebSite.ClientID%>").value;cancelorderwebsite=cancelorderwebsite.Trim();----------------------------------------------------------------------------------------------------------------------//增加一個名為trim的函數(shù)作為//String構(gòu)造函數(shù)的原型對象的一個方法。String.
4、prototype.trim=function(){//用正則表達(dá)式將前后空格//用空字符串替代。returnthis.replace(/(^s*)
5、(s*$)/g,"");}//有空格的字符串vars="leadingandtrailingspaces";//顯示"leadingandtrailingspaces(35)"window.alert(s+"("+s.length+")");//刪除前后空格s=s.trim();//顯示"leadingandtrailingspaces(27)"windo
6、w.alert(s+"("+s.length+")");-----------------------------------------------------------------------------------------------js中本身是沒有trim函數(shù)的,不過你可以自己寫一個functiontrim(str){varnewStr=str.replace(/^s*$/g,'')retrunnewStr;}-----------------------------------------
7、----------------------------------------javascript:functionChangeToBig(value){varintFen,i;varstrArr,strCheck,strFen,strDW,strNum,strBig,strNow;if(trim(value)=="")//數(shù)據(jù)為空時返回"零"return"零";if(isNaN(value))//數(shù)據(jù)非法時提示,并返回空串{strErr="數(shù)據(jù)"+value+"非法!"alert(strErr);ret
8、urn"";}strCheck=value+".";strArr=strCheck.split(".");strCheck=strArr[0];if(strCheck.length>12)//數(shù)據(jù)大于等于一萬億時提示無法處理{strErr="數(shù)據(jù)"+value+"過大,無法處理!"alert(strErr);return"";}try{i=0;strBig="";intFen=value*100;//轉(zhuǎn)換為以分為單位的數(shù)值strFen=intFen.toString();strArr=strFen.spli
9、t(".");strFen=strArr[0];intFen=strFen.length;//獲取長度strArr=strFen.split("");//將各個數(shù)值分解到數(shù)組內(nèi)while(intFen!=0)//分解并轉(zhuǎn)換{i=i+1;switch(i)//選擇單位{case1:strDW="分";break;case2:strDW="角";break;case3:strDW="元";break;case4:strDW="拾";break;case5:strDW="佰";break;case6:strDW=
10、"仟";break;case7:strDW="萬";break;case8:strDW="拾";break;case9:strDW="佰";break;case10:strDW="仟";break;case11:strDW="億";break;case12:strDW="拾";break;case13:strDW="佰";break;case14:strDW="仟";break;}switch(strArr[in