这些是自动调整单个文本区域大小的片段:
http://jsfiddle.net/ImpressiveWebs/fGNNT/1333/
例如,在上面的第一个链接中,这是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>
<textarea id="comments" placeholder="Type many lines of texts in here and you will see magic stuff" class="common"></textarea>
只有第一个正在调整大小。如何让第二个也调整大小?
答案 0 :(得分:2)
id
必须是唯一的,在这里您声明了两个具有相同ID comments
的div;因为你已经将你的事件附加到一个id,它就无法工作,因为函数getElementById
只返回一个元素(第一个在dom中找到,这就是你的第二个textarea没有调整大小的原因。
您可以使用class
代替div,或将您的活动附加到textarea
元素,而不是特定的div
答案 1 :(得分:2)
这很好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;