Bekomme keine Float in CSS

Carrear

Erfahrenes Mitglied
Hi Leute,

ich habe ein Problem mit Zahlenformaten. Obwohl die Zahlen, welche zu 'total' addiert werden alle das richtige Format haben, wird mit in der CSS Angabe keine Float sondern eine Ganzzahl ausgegeben. Ich bin da echt ratlos.

Code:
            function positionCutlines() {
                var maxVal = <?php echo $_SESSION['shoproleselection']; ?>;
                maxVal = parseFloat(maxVal);
                var oneVal = (maxVal/100);
                oneVal = parseFloat(oneVal);
                var cutlineValues = [];
                $(".cutinput").each(function(){
                    var currentCutid = $(this).attr("data-cutid");
                    var thisValue = $(this).find("[name=shopcutinput]").val();
                    thisValue = (thisValue/oneVal);
                    var total = 0.00;
                    total = parseFloat(total.toFixed(2));
                    cutlineValues.push(thisValue);
                    for(var i=0;i<cutlineValues.length;i++){ total += parseFloat(cutlineValues[i]) << 0; }
                    $(".cutline[data-cutid=" + currentCutid + "]").css("top", total + "%");
                });
            }
 

Neue Beiträge

Zurück