textarea的append干嘛的?
TextArea方法append()的作用是在此文本域后面繼續追加內容。 舉例: TextArea ta = new TextArea(); ta.append("我是中國人.\n"); ta.append("我愛我的祖國"); 解釋:先定義了一個文本域,之后如果多次追加內容的話,就只需要通過append進行追加,不需要獲取到已經寫入的值,方便了文本域內容的擴充。
textarea的append干嘛的?
TextArea方法append()的作用是在此文本域后面繼續追加內容。 舉例: TextArea ta = new TextArea(); ta.append("我是中國人.\n"); ta.append("我愛我的祖國"); 解釋:先定義了一個文本域,之后如果多次追加內容的話,就只需要通過append進行追加,不需要獲取到已經寫入的值,方便了文本域內容的擴充。