单位换算:分转元

  function Fen2Yuan( num ) {
       if ( typeof num !== "number" || isNaN( num ) ) return null;
       return ( num / 100 ).toFixed( 2 );
  }
原文地址:https://www.cnblogs.com/ihada/p/2397102.html