调整元素大小后发出警报

时间:2014-08-01 09:20:52

标签: javascript jquery html

如何在重新调整元素大小后立即发出警告消息?也就是说,在元素重新调整大小之后。 resizeend()方法不起作用。

1 个答案:

答案 0 :(得分:1)

检查以下链接

$( $clone ).resizable({

                stop:function(){
                     hello();
                },

            });

检查以下链接了解更多信息,它使用jquery ui调整大小并在调整大小后调用javascrip

Fiddle

html内容

<div class = "resizethis">
resize this widget

两个js库

<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>

一个css

<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">

javascript内容

$('.resizethis').resizable({
stop: resizestopped
});

function resizestopped(){
    alert('resize stopped');
}

css

.resizethis{
    width: 100px;
    height: 100px;
    border: 2px solid red;
}