タグ付けされた質問 「parsefloat」

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 誰かが私が間違っていることを教えてもらえますか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.