jQuery 自动调整大小

发布于 2024-11-18 09:13:50 字数 340 浏览 4 评论 0原文

如何在 JQuery 的 live 中使用 jquery 插件“autoresize” () 功能最好?问题是,该插件在当前文本区域后面创建一个文本区域(绝对位置)。当我使用 jquery live() 函数时,我陷入了无限循环,因为由脚本创建的 textarea 得到了另一个,依此类推......希望你可以跟着我。

我如何将 live() 与该插件一起使用?

How can I use the jquery plugin "autoresize" with JQuery's live() function best? The problem is, that the plugin creates an textarea behind the current one (with position absolute). When I use the jquery live() function I get stuck in an infinite loop, because the textarea, created by the script, gets another one and so on... Hope that you can follow me.

How can I use live() with that plugin?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹短裙飘 2024-11-25 09:13:50

正如您所说,在 autoresize.jquery.js 中,它创建了 textarea 的克隆来执行文本大小计算。如下所示:

return textarea.clone().removeAttr('id').removeAttr('name').css({

如您所见,它删除了 nameid 属性。您可以修改此行以添加一个 class 属性,然后可以使用 $.live() 选择器过滤掉该属性。例如

return textarea.clone().removeAttr('id').removeAttr('name').addClass('clone').css({

$('textarea:not(.clone)').live()

In autoresize.jquery.js, as you said, it creates a clone of the textarea to perform text size calculations. Here it is:

return textarea.clone().removeAttr('id').removeAttr('name').css({

As you see it strips name and id attributes. You could modify this line to add a class attribute which you can then filter out with your $.live() selector. E.g.

return textarea.clone().removeAttr('id').removeAttr('name').addClass('clone').css({

And

$('textarea:not(.clone)').live()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文