Archives by date

You are browsing the site archives by date.

JavascriptにてPHPのnumber_format()的な処理を行う方法。

数列の3桁ごとにカンマを挿入したい時用。
渡した値が数値以外だった場合は文字列型の0を返却。

function numberFormat(int){
    value = String(int);
    while(value != (value = value.replace(/^(-?\d+)(\d{3})/, '$1,$2')));
    if(isNaN(parseInt(value))) value = '0';
    return value;
}

これは便利。

jQueryのfadeOut()関数は第二因数にコールバックを指定できた。

自分的大発見←
以下例。

target = $('tr');
target.fadeOut('50', function(){
	target.remove();
});

上記はtr要素をフェードアウトさせた後そのまま削除する際の例。
同様にfadeIn()関数でもコールバックを指定することが出来る模様。

Javascriptにて先頭1文字を取り除く。

表示金額をごにょごにょしたかった時、jQueryで文字列中の円マークをどうしても取り除けなかったので仕方なくやった時のメモ。

var str = 'abcd';
res = str.substr(1);
console.log(res);
↓
// bcd

まじごり押し(´・_・`)
もっとスマートなやり方を見つけたらもっかい書き直します。