gpt4 book ai didi

javascript - 自动调整页面上多个文本区域的大小

转载 作者:太空宇宙 更新时间:2023-11-03 21:46:49 26 4
gpt4 key购买 nike

这些是自动调整单个文本区域大小的片段:

http://jsfiddle.net/ImpressiveWebs/fGNNT/1333/

http://jsfiddle.net/CbqFv/

例如在上面的第一个链接中,这是文本区域:

<textarea id="comments" placeholder="Type many lines of texts in here and you will see magic stuff" class="common"></textarea>

它会在输入文本时调整大小。

然而,与

<textarea id="comments" placeholder="Type many lines of texts in here and you will see magic stuff" class="common"></textarea>

<textarea id="comments" placeholder="Type many lines of texts in here and you will see magic stuff" class="common"></textarea>

只有第一个正在调整大小。如何让第二个也调整大小?

最佳答案

这很好用 http://jsfiddle.net/fGNNT/2219/ .使用类代替ID进行标识

// Bad
var txt = $('#comments'),
hiddenDiv = $(document.createElement('div')),
content = null;

// Good and working
var txt = $('.common'),
hiddenDiv = $(document.createElement('div')),
content = null;

关于javascript - 自动调整页面上多个文本区域的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20161453/

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