jQuery - 检测textarea的大小

时间:2013-08-23 01:10:23

标签: jquery resize textarea bind

我试图检测用户何时调整可调整大小的textarea ..

我正在尝试使用此代码,但它不起作用:

$('textarea.note').bind("resize", function(){

  alert("resize!!!!!");


})

我不想真正使用任何类型的计时器和循环..帮助!?

1 个答案:

答案 0 :(得分:9)

DEMO

$(document).ready(function () {
    var $textareas = jQuery('textarea');

    // set init (default) state   
    $textareas.data('x', $textareas.outerWidth());
    $textareas.data('y', $textareas.outerHeight());

    $textareas.mouseup(function () {

        var $this = $(this);

        if ($this.outerWidth() != $this.data('x') || $this.outerHeight() != $this.data('y')) {
            alert($this.outerWidth() + ' - ' + $this.data('x') + '\n' + $this.outerHeight() + ' - ' + $this.data('y'));
        }

        // set new height/width
        $this.data('x', $this.outerWidth());
        $this.data('y', $this.outerHeight());
    });
});