我在 jquery mobile 中动态创建文本区域。但问题是动态文本区域不会在键入时自动增长,而静态创建的文本区域在键入时会自动增长。有人可以告诉我如何实现动态创建的文本区域的自动增长。提前致谢
问问题
485 次
2 回答
1
在将 textarea 添加到 DOM 后尝试使用它:
$("#pageId").trigger('create');//id of the the data-role="page" div in which you are dynamically adding the texarea.
于 2013-05-31T11:15:18.237 回答
0
您可以为此使用 jQuery autogrow插件。
$(function() {
$('#yourtextarea').autogrow();
});
于 2013-05-31T11:08:04.120 回答