0

我正在构建一个 jquery 项目,人们可以在其中绘制地图,他们可以将 div 放在地图上,然后他们可以四处移动和调整大小。我想要一个在调整 div 大小时更新 div 的当前宽度/高度的框。目前它可以工作,但它只会在他们完成调整大小后更新,但我希望它在他们调整大小时实时更新。

我当前的代码仅在调整大小后才会更新:

$(item).resizable({
            grid: Math.round(gridStand),
            stop : function(event,ui) {
                endW = Math.round($(this).outerWidth()/gridStand);
                endH = Math.round($(this).outerHeight()/gridStand);
                $(this).attr('w', endW).attr('h', endH)
                $('.standW').html('<h5>Breedte</h5><h4>'+($(item).attr('w')/2)+'</h4><span>meter</span>');
                $('.standH').html('<h5>Diepte</h5><h4>'+($(item).attr('h')/2)+'</h4><span>meter</span>')
                }
            })
            .draggable({
                grid: [ Math.round(gridStand), Math.round(gridStand) ],
                 containment: "#map", 
                 scroll: false,
                 stop : function(event,ui) {
                    endX = Math.round($(this).position().left/gridStand);
                    endY = Math.round($(this).position().top/gridStand);
                    $(this).attr('x', endX).attr('y', endY)
                }
            })

有谁知道如何更改它,以便它在调整大小时更新,而不仅仅是在您完成调整大小时更新?

4

1 回答 1

1

resize每次调整大小的对象的大小发生变化时,都会在调整大小期间触发该事件。您将要使用它而不是stop,它仅在调整大小完成后触发一次。

于 2013-03-08T09:00:40.283 回答