我有这个 TextAreaExpander jQuery 函数工作,但我有一个小问题。
当 textarea 非常大时,使用退格键或删除按钮从其底部删除文本会导致焦点移动到 textarea 的顶部,因此光标会移出屏幕。编辑大段文本变得非常刺耳。
如何让此功能自动调整文本区域的大小,但在这种情况下不跳转并隐藏光标?
(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);
// initialize all expanding textareas
jQuery(document).ready(function() {
jQuery('textarea[class*=expand]').TextAreaExpander();
});
您可以通过从文本区域的最底部删除文本来查看问题:http: //jsfiddle.net/BmwCe/1/
谢谢!