Wednesday, March 30, 2016

Mengubah format teks pada input box kepada desimal dengan jQuery





Macam mana nak ubah format teks pada input box kepada desimal dengan jQuery?

Ini contoh kodnya:

$('#berapa_duit').on('change', function() {
    this.value = parseFloat(this.value).toFixed(2);
});
Share:

0 comments:

Post a Comment