40 Articles, Search for '분류 전체보기'
- 2009/09/15 Androidology - Part 3 of 3 - APIs
- 2009/09/15 Androidology - Part 2 of 3 - Application Lifecycle
- 2009/09/15 Androidology - Part 1 of 3 - Architecture Overview
- 2009/09/09 Apple iPhone 3GS Guided Tour and features
- 2009/09/08 HTML - The TEXTAREA element (WAP-Input-Format)
The TEXTAREA element creates a multi-line text input control. User agents should use the contents of this element as the initial value of the control and should render this text initially.
This example creates a TEXTAREA control that is 20 rows by 80 columns and contains two lines of text initially. The TEXTAREA is followed by submit and reset buttons.
<FORM action="http://somesite.com/prog/text-read" method="post">
<P>
<TEXTAREA name="thetext" rows="20" cols="80">
First line of initial text.
Second line of initial text.
</TEXTAREA>
<INPUT type="submit" value="Send"><INPUT type="reset">
</P>
</FORM>
Setting the readonly attribute allows authors to display unmodifiable text in a TEXTAREA. This differs from using standard marked-up text in a document because the value of TEXTAREA is submitted with the form.
출처 : http://www.w3.org/TR/html401/interact/forms.html#h-17.7

Leave your greetings.