将值格式化为金钱

时间:2015-02-08 07:37:45

标签: javascript

我想将值1000格式化为1,000美元,我该怎样做以下内容:

<span>money(1000)</span>

<h2>Book sales chart</h2> 
<script src="//cdnjs.cloudflare.com/ajax/libs/accounting.js/0.3.2/accounting.min.js"></script>

<script>
    $(function () {   
        function money(value) {
            return accounting.formatMoney(value, "$");
         }
    }
</script>

2 个答案:

答案 0 :(得分:0)

您可以这样做:

 <span id="price"></span>

 <script>
  $(document).ready(function(){
  var p = money(1000);
  document.getElementById("price").innerHTML = p ;  //javascript. or
  $("span#price").text(p);   //jquery
 });
 </script>


 <script>
function moneyformat(mon)
 {
   var money = "$";
   var moneyform = money + mon;
   return moneyform;
  }
 </script>

答案 1 :(得分:0)

这是一个带数字的函数,然后输出格式化美元的字符串:

function formatDollars(n) {
    return "$" + n.toFixed(2).replace(/./g, function(c,i,a) {
        return i > 0 && c !== "." && (a.length - i) % 3 === 0 ? "," + c : c;
    });
}

使用jQuery获取格式化所需的值,通过上述函数传递值,然后更新元素。祝你好运:)