javascript - jQuery 自动调整大小功能导致浏览器跳转

标签 javascript jquery

我喜欢这个文本扩展器,因为它不会像其他人在计算调整大小时那样偶尔锁定键盘。但是,当我使用它时,浏览器有时会在调整大小时跳到页面顶部(而不是停留在我滚动到的页面中的位置)。关于如何解决这个问题有什么建议吗?

/**
 * TextAreaExpander plugin for jQuery
 * v1.0
 * Expands or contracts a textarea height depending on the
 * quatity of content entered by the user in the box.
 *
 * By Craig Buckler, Optimalworks.net
 *
 * As featured on SitePoint.com:
 * http://www.sitepoint.com/blogs/2009/07/29/build-auto-expanding-textarea-1/
 *
 * Please use as you wish at your own risk.
 */

/**
 * Usage:
 *
 * From JavaScript, use:
 *     $(<node>).TextAreaExpander(<minHeight>, <maxHeight>);
 *     where:
 *       <node> is the DOM node selector, e.g. "textarea"
 *       <minHeight> is the minimum textarea height in pixels (optional)
 *       <maxHeight> is the maximum textarea height in pixels (optional)
 *
 * Alternatively, in you HTML:
 *     Assign a class of "expand" to any <textarea> tag.
 *     e.g. <textarea name="textarea1" rows="3" cols="40" class="expand"></textarea>
 *
 *     Or assign a class of "expandMIN-MAX" to set the <textarea> minimum and maximum height.
 *     e.g. <textarea name="textarea1" rows="3" cols="40" class="expand50-200"></textarea>
 *     The textarea will use an appropriate height between 50 and 200 pixels.
 */

(function($) {

    // jQuery plugin definition
    $.fn.TextAreaExpander = function(minHeight, maxHeight) {

        var hCheck = !($.browser.msie || $.browser.opera);

        // resize a textarea
        function ResizeTextarea(e) {

            // event or initialize element?
            e = e.target || e;

            // find content length and box width
            var vlen = e.value.length, ewidth = e.offsetWidth;
            if (vlen != e.valLength || ewidth != e.boxWidth) {

                if (hCheck && (vlen < e.valLength || ewidth != e.boxWidth)) e.style.height = "0px";
                var h = Math.max(e.expandMin, Math.min(e.scrollHeight, e.expandMax));

                e.style.overflow = (e.scrollHeight > h ? "auto" : "hidden");
                e.style.height = h + "px";

                e.valLength = vlen;
                e.boxWidth = ewidth;
            }

            return true;
        };

        // initialize
        this.each(function() {

            // is a textarea?
            if (this.nodeName.toLowerCase() != "textarea") return;

            // set height restrictions
            var p = this.className.match(/expand(\d+)\-*(\d+)*/i);
            this.expandMin = minHeight || (p ? parseInt('0'+p[1], 10) : 0);
            this.expandMax = maxHeight || (p ? parseInt('0'+p[2], 10) : 99999);

            // initial resize
            ResizeTextarea(this);

            // zero vertical padding and add events
            if (!this.Initialized) {
                this.Initialized = true;
                $(this).css("padding-top", 0).css("padding-bottom", 0);
                $(this).bind("keyup", ResizeTextarea).bind("focus", ResizeTextarea);
            }
        });

        return this;
    };

})(jQuery);

最佳答案

只要我无法回答问题,代码审查怎么样?

  • 如果您仅分配 expand 类,则该插件不适用,尽管有文档。
  • JavaScript 中的惯例是函数、方法和属性名称以小写字母开头。
  • 浏览器嗅探几乎总是错误的。你想用它来解决什么问题?它真的适用于所有版本的 IE(甚至 IE9)和 Opera 吗?即使在标准模式下也是如此?
  • 在 DOM 元素引用上创建自定义属性被认为是不好的形式,因为它们不是 native JavaScript 对象,因此它们可能不支持自定义属性。另外还存在其他插件使用相同属性名称的危险。相反,请使用 jQuery 的 .data() 方法并选择更独特的属性名称,例如带有前缀。
  • 我不太喜欢对两个不同的事物使用相同的参数。至少为参数指定一个比 e 更好的名称,例如 eventOrTarget

关于javascript - jQuery 自动调整大小功能导致浏览器跳转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5944942/

相关文章:

javascript - 如何记住提交/刷新后使用的最后一个选项卡?

javascript - 在 Chrome 中 touchmove 期间 event.target 未更改

javascript - 使用 NetSuite SuiteScript 访问自定义列的文本值

javascript - 动态设置/更改事件处理程序是不好的做法吗?

javascript - 为什么我的对象的这些属性在 for in 循环期间未定义?

javascript - 用户 ACTION_VIEW Intent 在 APP 中打开 URL

jquery - CSS/jQuery 多级列表

php - 使用 PHP 的动态 jQuery 弹出窗口

javascript - 跨度外层后台控制层级

javascript - 从另一个文件更改javascript中的对象值