Javascript:如何强制使用带小数值的字符串来使用点而不是逗号?

时间:2013-12-13 08:58:31

标签: javascript string

我有例如:

 var locations = new google.maps.LatLng('@item.latitude', '@item.longitude', false);

@ item.latitude值例如:“43,421”

但我需要它:43.321

我需要强制小数点分隔符作为点而不是逗号。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

试试这个:

    var lat = '@item.latitude';
    var lng = '@item.longitude';
    var locations = new google.maps.LatLng(lat.replace(',','.'), lng.replace(',','.'), false);