10
Javascript parse floatは、コンマの後の小数を無視しています
これが簡単なシナリオです。私のサイトに表示されている2つの値の減算を表示したいと思います。 //Value on my websites HTML is: "75,00" var fullcost = parseFloat($("#fullcost").text()); //Value on my websites HTML is: "0,03" var auctioncost = parseFloat($("#auctioncost").text()); alert(fullcost); //Outputs: 75 alert(auctioncost); //Ouputs: 0 誰かが私が間違っていることを教えてもらえますか?