我试图在一个项目中将值格式化为金钱,而这些值可能是负数。
我被困在如何创建正确的面具。我做了一个jsfiddle:
<input type="text" class="negative-money" />
$(document).ready(function() {
var mask = $('.negative-money');
var money = -1011987.65;
mask.val(money);
mask.mask('-{000,}000.00');
// ---------^^^^^^ the problem is here
});
我查看了一些示例并阅读了一些文章,但我不知道该怎么做。
我希望上一个示例的输出为:-1,011,987.65