我正在尝试删除从 json 提要中提取的货币价值的十进制值:
如果我喜欢:150,000我只想拥有150
这是我的代码:
$.getJSON('/static/js/datatest.json', function (result){
$.each(result.events, function(i, item){
$('#isoContainer').append('<h3>£<span class="value">' + item.value.replace(/\.0{0,2}$/, "") + '</span></h3>');
});
});
为什么这不起作用item.value.replace(/\,0{0,3}$/, "")
?