TEXTAREA

Language/JAVASCRIPT 2010. 5. 10. 15:36

폼에 여러 줄 입력란을 만든다. 이것은 2줄 이상 입력란을 만들 때 사용하고 text개체는 한 줄 입력란을 만들 때 사용한다.

property(속성)

method(메써드)

event handlers

netscape6.0

Expolorer

netscape6.0

Explorer

공통

defaultValue    
 
blur    
 
onBlur
form    
 
focus
focus
onClick
name
Name
select
select
onDblClick
type
Type
addEventListener
applyElement
onfocus
value
Value
removeEventListener
attachEvent
onKeyDown
readOnly
readOnly
 
detachEvent
onKeyUp
rows
rows
 
blur
onKeyPress
 
status
 
click
onMouseDown
cols
wrap
insertBefore
insertBefore
onMouseUp
accessKey
accessKey
replaceChild
replaceChild
onMouseOver
id
id
removeChild
removeChild
onMouseOut
title
title
../data/lecture/hcjd/appendixcdChild
../data/lecture/hcjd/appendixcdChild
 
lang
lang
hasChildNodes
hasChildNodes
 
dir
dir
cloneNode
cloneNode
 
className
className
 
removeNode
 
style   
 
 
replaceNode
 
innerHTML   
 
 
swapNode
 
 
innerText
 
clearAttributes
 
 
outerHTML
getAttribute
getAttribute
 
 
outerText
setAttribute
setAttribute
 
tagName
tagName
removeAttribute
removeAttribute
 
offsetTop
offsetTop
 
mergeAttributes
 
offsetLeft
offsetLeft
getAttributeNode    
   
offsetWidth
offsetWidth
setAttributeNode    
   
offsetHeight
offsetHeight
removeAttributeNode 
   
offsetParent
offsetParent
getElementsByTagName
getElementsByTagName
 
 
clientHeight
 
contains
 
 
clientLeft
 
insertAdjacentHTML
 
 
clientTop
 
insertAdjacentText
 
 
clientWidth
 
insertAdjacentElement
 
 
isContentEditable
 
getAdjacentText
 
 
contentEditable
 
replaceAdjacentText
 
 
canHaveChildren
 
setActive
 
 
canHaveHTML
 
setExpression
 
ownerDocument   
 
 
getExpression
 
nodeName
nodeName
 
removeExpression
 
nodeValue
nodeValue
 
scrollIntoView
 
nodeType
nodeType
     
parentNode
parentNode
     
childNodes  
       
 
parentElement
     
firstChild
firstChild
     
lastChild
lastChild
     
previousSibling
previousSibling
     
nextSibling
nextSibling
     
attributes  
       
 
isDisabled
     
disabled
disabled
     
tabIndex
tabIndex
     
 
isTextEdit
     
 
parentTextEdit
     
 
width
     
 
sourceIndex
     
 
scrollHeight
     
 
scrollLeft
     
 
scrollTop
     
 
scrollWidth
     
 

아래에서  설명되지 않은 것은 div개체를 참고하세요.

 

 

<TEXTAREA>
보여줄 텍스트 위치
</TEXTAREA>

 

defaultValue

textarea 개체를 만들 때 html소스에서 <TEXTAREA name=text rows= cols=>태그와 </TEXTAREA> 태그 사이에 위치한 값을 말한다.
 

form

textarea 개체를 포함하는 폼 개체를 참조하거나 폼에 있는 다른 개체를 참조하기 위해 사용되는 속성이다.
 

name

textarea 버튼개체의 name 속성을 나타내는 속성이다.
 

 

object.name [ = ①string ]
① string: name 속성을 나타내는 문자열

 

type

이 속성은 textarea 개체의 type을 나타내는 것으로 "textarea"이다.
 

 

[ ①string = ] TEXTAREA.type

① string: type 속성을 나타내는 문자열
 

value

textarea개체를 text란에 나타나는 text를 지정하는 속성으로 우리가 textarea 박스를 볼 때 보이는 문자이다.
 

 

TEXTAREA.value [ = ①string ]
①string : textarea 입력란에 입력할 text를 나타내는 문자열

 

readOnly

textarea 개체의 내용물을 읽기전용으로 지정할 것인가를 나타내는 속성이다.
 

 

object.readOnly [ = ①boolean ]
① Boolean 값으로 지정할 수 있는 것은 다음과 같다.
true
textarea 개체는 읽기 전용이다.
false
textarea 개체는 읽기 전용이 아니다. 기본값
 

rows

textarea 개체가 몇 줄로 보이게 할 것인가를 나타내는 속성이다.
 

 

 TEXTAREA.rows [ = ①interger ]
① interger : 줄의 수를 지정하는 정수

 

status

textarea 개체가 선택가능하게 할지를 지정하는 속성이다.
 

 

 object.status [ = ①boolean ]
① boolean 값으로 지정할 수 있는 것은 다음과 같다.
true
개체를 선택할 수 있다.
false
개체를 선택할 수 없다.
null
개체를 초기화하지 않는다.
 

wrap

textarea개체내에 있는 텍스트의 줄 바꾸기 정보를 어떤게 처리할 것인가를 나타내는 속성이다.
 

 

 object.wrap [ = ①string ]
① string 값으로 지정할 수 있는 것은 다음과 같다.
soft
자동으로 줄바꾸기를 실행하며, 원래의 줄바꾸기 정보를 포함하지 않는다.
hard
자동으로 줄바꾸기를 실행하며, 원래의 줄바꾸기 정보를 포함한채로 제출된다
off
자동으로 줄바꾸기를 하지 않고 원래 사용자가 입력한 대로 그대로 나타난다.

[출처] TEXTAREA|작성자 해피캐빈

'Language > JAVASCRIPT' 카테고리의 다른 글

with  (0) 2010.05.14
document.open(), document.close() 메소드  (0) 2010.05.10
Submit  (0) 2010.05.10
reset  (0) 2010.05.10
image, button  (0) 2010.05.10
: