jquery textarea调整宽度和高度

时间:2012-12-11 16:06:27

标签: javascript jquery css

我正在尝试为Firefox和Chrome创建jQuery插件,这将使textarea自动增长高度和宽度。 This is what I have done

HTML:

<div class="textbox">
    <textarea>Some Text</textarea>
</div>

CSS:

body, html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.textbox {
    position: absolute;
    border: 4px dashed #CCCCCC;
    min-width: 30px;
    padding: 8px;
}


.textbox textarea {
    background: transparent;
    padding: 0;
    margin: 0;
    resize: none;
    font-family: Arial, sans-serif;
    font-size: 60px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: none;
    white-space: nowrap;
}

.hiddendiv {
    display: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

JS:

$(function() {
    $.fn.textbox = function(options) {
        options = options || {};

        var maxWidth = options.maxWidth || $(window).width(),
            maxHeight = options.maxHeight || $(window).height();

        this.each(function() {
            var elem = $(this),
                clone = $("<div class='hiddendiv'></div>").appendTo("body"),
                textarea = elem.find("textarea"),
                content = "";

            function setMaxSize() {
                var widthSpace = elem.outerWidth(true) - elem.width();
                var heightSpace = elem.outerHeight(true) - elem.height();
                var newMax = {
                    "max-width": maxWidth - widthSpace,
                    "max-height": maxHeight - heightSpace
                };

                elem.css(newMax);
                clone.css(newMax);
            }

            function adjust() {
                clone.css({
                    "font-family": textarea.css("font-family"),
                    "font-size": textarea.css("font-size")
                });

                content = textarea.val().replace(/\n/g, '<br>&nbsp;');
                if (content === "") {
                    content = "&nbsp;";
                }

                clone.html(content);

                elem.css({
                    height: clone.height(),
                    width: clone.width() + 5
                });
            }
            textarea.on("keyup", adjust);

            setMaxSize();
            adjust();

        });
    };

    $(".textbox").textbox();
});

我有一些问题:

  1. 每当我输入一个字母并展开框时,只有在Firefox中才会出现奇怪的眨眼。我怎么能摆脱眨眼?
  2. 在Chrome中,当我输入一个字母时,第一个字母向后移动然后返回其位置。我怎么能阻止这个?
  3. 在Chrome中,每当我输入一个长单词“Sdfsdfsdfwejhrkjsdhfsdf”时,文本在达到max-width时不会破坏新行,但会出现一个新行。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您可以在.textbox元素上使用css转换,即:transition: all 0.5s;