调整大小时的表单值更新

时间:2016-11-19 19:07:19

标签: javascript jquery jquery-ui

我正在创建一个使用JqueryUI的Web应用程序。我想要发生的是在我调整大小时更新我的​​#priceform。 我的意思是,当我将图像调高到更高时,价格会增加,并且当我将其调整到较低时,价格会递减。

我尝试了一些代码,似乎我的逻辑在这段代码中不起作用。我的调整大小代码:

start:function(event,ui)
                {
                    var height = parseFloat($(".activeElement").find("img").height());
                },


                resize: function(event,ui)
                {   
                    var heightnow = parseFloat($(".activeElement").find("img").height());
                    if(heightnow>height)
                    {

                        price+=pricew;
                        total+=pricew;
                        $("#priceform").val(total);

                    }
                    else if(heightnow<height)
                    {
                        price-=pricew;
                        total-=pricew;
                        $("#priceform").val(total);

                    }

有人可以帮我这个吗?

0 个答案:

没有答案