如何缩小文本区域
我正在使用 Yahoo 的 YUI 3.1 库以及 TextExpander 来让 TextArea 在用户键入时增长。
下面的代码初始化 TextArea:
YUI({gallery: 'gallery-2010.03.23-17-54'
}).use("node", 'gallery-text-expander', function(Y) {
Y.one('#myTextArea').plug(Y.TextExpander);
});
它工作得很好,但现在我在这种情况下有一个问题:
1) 用户类型,TextArea 会增长很多行,然后消息会发布到服务器。
2) 发布后,我用 $('myTextArea').value=''
清理 TextArea,但它没有按预期缩小,并且实际时仍然有很多行必须恢复到原来的大小。
我注意到 TextExpander 的代码 (http:// /yuilibrary.com/gallery/buildtag/text-expander/gallery-2010.03.23-17-54)存在一个名为“shrink_area
”的方法,但我如何调用此方法 $('myTextArea').shrink_area()
? (我知道这是错误的代码行,但我需要获得类似的东西)或者什么是最好的方法?
预先感谢您的建议和提示。
i am using YUI 3.1 Library from Yahoo and also the TextExpander to let a TextArea to grow up when a user type.
The code below initialize the TextArea:
YUI({gallery: 'gallery-2010.03.23-17-54'
}).use("node", 'gallery-text-expander', function(Y) {
Y.one('#myTextArea').plug(Y.TextExpander);
});
It's work perfectly but now i have a question in this scenario:
1) The user type, the TextArea grow up for many rows and then the message is post to the server.
2) After the post, i clean the TextArea with $('myTextArea').value=''
but it's not shrink as expected and still have many rows when in real must back to the original size.
I notice inside the code of the TextExpander (http://yuilibrary.com/gallery/buildtag/text-expander/gallery-2010.03.23-17-54) exist a method called "shrink_area
" but how i can call this method$('myTextArea').shrink_area()
?
(i know is a wrong line of code but i need to obtain something like this) or what is the best way ?
Thanks in advance for the suggestions and tips.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Textarea 具有用于更改大小的
rows
和cols
属性。尝试设置这些。Textarea has
rows
andcols
properties for changing the size. Try setting these.哦,好吧,我自己解决了这个问题。
因此,为了尝试调用插入类的内部方法(很高兴知道如何做,可能使用自定义命名空间),我编写了一个小函数来实现这一点。
1) 首先,我在类中设置 CSS 属性
min-height
2) 清除 TextArea 后,我将
height
设置为 min-height下面的代码显示了可以解决这个问题的函数
Oh well i solved the problem myself.
So instead to try to call the internal method of the plugged class (that was nice to know how to do, probably using a custom namespace) i wrote a little function that do the trick.
1) first of all i set the CSS property
min-height
in the class2) after clear the TextArea i set the
height
as the min-heightthe code below shown the function that do the trick