Textarea

Textarea គឺ​ជា​ធាតុ HTML មួយ​ទៀត ដែល​អនុញ្ញាត​អោយ​យើង​អាច​សរសេរ​អត្ថបទ​យ៉ាង​វែង​នៅ​ក្នុង​នោះ​។ ដើម្បី​បង្កើត Textarea យើង​ត្រូវ​ធ្វើ​ដូច​ខាង​ក្រោម​នេះ៖
<!DOCTYPE html>
<html>
  <head>
    <link href='https://fonts.googleapis.com/css?family=Odor+Mean+Chey' rel='stylesheet'>
  </head>
  <body style="font:14px/1.5 'Odor Mean Chey'">
  
  	
<script> function validateForm() { var valf = document.forms["myForm"]["ftextarea"].value; if(valf == ""){ alert("អ្នកត្រូវ​សរសេរ​អត្ថបទ​អ្វី​មួយ​។"); return false; } } </script> </body> </html>



នៅ​លើ​បន្ទាត់​លេខ 9 គឺ​ជា​ការបង្កើត​ធាតុ HTML មាន​ប្រភេទ​ជា textarea មួយ មាន​ឈ្មោះ​ថា ftextarea និង​មាន​អត្តសញ្ញាណ​ជា myTextarea ៕

Textarea Object Properties
Property Description
autofocus Sets or returns whether a text area should automatically get focus when the page loads
cols Sets or returns the value of the cols attribute of a text area
defaultValue Sets or returns the default value of a text area
disabled Sets or returns whether the text area is disabled, or not
form Returns a reference to the form that contains the text area
maxLength Sets or returns the value of the maxlength attribute of a text area
name Sets or returns the value of the name attribute of a text area
placeholder Sets or returns the value of the placeholder attribute of a text area
readOnly Sets or returns whether the contents of a text area is read-only
required Sets or returns whether the text area must be filled out before submitting a form
rows Sets or returns the value of the rows attribute of a text area
type Returns the type of the form element the text area is
value Sets or returns the contents of a text area
wrap Sets or returns the value of the wrap attribute of a text area