gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 10:19:16 25 4
gpt4 key购买 nike

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

/**
* 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com