web-dev-qa-db-ja.com

jQueryでは、数値を小数点以下2桁にフォーマットする最良の方法は何ですか?

これは私が今持っているものです:

$("#number").val(parseFloat($("#number").val()).toFixed(2));

私には面倒に見えます。関数を正しく連鎖させているとは思わない。テキストボックスごとに呼び出す必要がありますか、それとも個別の関数を作成できますか?

63
Iain Holder

これを複数のフィールドに実行する場合、または非常に頻繁に実行する場合は、おそらくプラグインが答えです。
フィールドの値を小数点以下2桁にフォーマットするjQueryプラグインの始まりです。
フィールドのonchangeイベントによってトリガーされます。別の何かが必要な場合があります。

<script type="text/javascript">

    // mini jQuery plugin that formats to two decimal places
    (function($) {
        $.fn.currencyFormat = function() {
            this.each( function( i ) {
                $(this).change( function( e ){
                    if( isNaN( parseFloat( this.value ) ) ) return;
                    this.value = parseFloat(this.value).toFixed(2);
                });
            });
            return this; //for chaining
        }
    })( jQuery );

    // apply the currencyFormat behaviour to elements with 'currency' as their class
    $( function() {
        $('.currency').currencyFormat();
    });

</script>   
<input type="text" name="one" class="currency"><br>
<input type="text" name="two" class="currency">
99
meouw

おそらく、このようなもので、必要に応じて複数の要素を選択できますか?

$("#number").each(function(){
  $(this).val(parseFloat($(this).val()).toFixed(2));
});
62
svinto

入力を使用している場合、より便利になるため、キーアップで使用するMeouw関数を変更します。

これをチェックして:

こんにちは、@ heridevと私はjQueryで小さな関数を作成しました。

次を試すことができます:

HTML

<input type="text" name="one" class="two-digits"><br>
<input type="text" name="two" class="two-digits">​

jQuery

// apply the two-digits behaviour to elements with 'two-digits' as their class
$( function() {
    $('.two-digits').keyup(function(){
        if($(this).val().indexOf('.')!=-1){         
            if($(this).val().split(".")[1].length > 2){                
                if( isNaN( parseFloat( this.value ) ) ) return;
                this.value = parseFloat(this.value).toFixed(2);
            }  
         }            
         return this; //for chaining
    });
});

デモオンライン:

http://jsfiddle.net/c4Wqn/

(@ heridev、@ vicmaster)

4
vicmaster