다음은 간단한 시나리오입니다. 내 사이트에 표시되는 두 값의 빼기를 표시하고 싶습니다.
//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
아무도 내가 뭘 잘못하고 있는지 말해 줄 수 있습니까?