DIV

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

< DIV >
 html 을 렌더링할 컨테이너를 지정하는 개체로 block요소이며 종료 태그가 있어야 한다. Dynamic html과 DOM에서는 html에서 나온 하나 하나의 html element(태그)를 개체로 취급하는데 이 개체 중 가장 대표적인 것이 div 개체로써  explorer와 netscape6.x에서 스타일 컨테이너로써 가장 중요하고 가장 많이 사용되며 가장 많은 속성과 매서드가 적용된다. 그러므로 html element(태그) 이용법은 모든 html element(태그)에 적용되는 것은 아니지만 div 개체를 참조하면 된다.  
참고로 netscape4.5에서 div 태그에 스타일을 적용해서 만든 layer 개체는 netscapt6.0에서 폐지되었으며 explorer와 유사하게 되었다.

property(속성)

method(메써드)

event handlers

netscape6.0

Expolorer

netscape6.0

Explorer

공통

 
accessKey
 
applyElement
onBlur
align
align
addEventListener
attachEvent
onclick
 
canHaveChildren
removeEventListener
detachEvent
ondblclick
 
canHaveHTML
focus
focus
onFocus
 
clientHeight
blur
blur
onkeypress
 
clientLeft
click
click
onkeydown
 
clientTop
insertBefore
insertBefore
onkeyup
 
clientWidth
replaceChild
replaceChild
onmousedown
offsetTop
offsetTop
removeChild
removeChild
onmouseup
offsetLeft
offsetLeft
../data/lecture/hcjd/appendixcdChild
../data/lecture/hcjd/appendixcdChild
onmouseover
offsetWidth
offsetWidth
hasChildNodes
hasChildNodes
onmousemove
offsetHeight
offsetHeight
cloneNode
cloneNode
onmouseout
offsetParent
offsetParent
 
removeNode
 
 
isContentEditable
 
replaceNode
 
 
contentEditable
 
swapNode
 
    
 
 
clearAttributes
 
 
isDisabled
getAttribute
getAttribute
 
 
disabled
setAttribute
setAttribute
 
innerHTML
innerHTML
removeAttribute
removeAttribute
 
 
innerText
 
mergeAttributes
 
 
outerHTML
getAttributeNode    
   
 
outerText
setAttributeNode    
   
id
id
removeAttributeNode 
   
className
className
getElementsByTagName
getElementsByTagName
 
tagName
tagName
normalize
contains
 
title
title
 
doScroll
 
 
tabIndex
 
insertAdjacentHTML
 
 
parentElement
 
insertAdjacentText
 
style
style
 
insertAdjacentElement
 
 
hideFocus
 
getAdjacentText
 
lang
lang
 
replaceAdjacentText
 
 
language
 
setActive
 
 
scrollHeight
 
setExpression
 
 
scrollLeft
 
getExpression
 
 
scrollTop
 
removeExpression
 
 
scrollWidth
 
scrollIntoView
 
 
noWrap
     
 
readyState
     
 
uniqueID
     
 
sourceIndex
     
ownerDocument   
       
nodeName
nodeName
     
nodeValue
nodeType
     
nodeType
nodeValue
     
parentNode
parentNode
     
childNodes  
       
firstChild
firstChild
     
lastChild
lastChild
     
previousSibling
previousSibling
     
nextSibling
nextSibling
     
attributes  
       
 
모든 HTML ELEMENT에 적용되는 것  

 

 

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

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

BUTTON  (0) 2010.05.10
Location  (0) 2010.05.10
window 개체  (0) 2010.05.10
onSelect | onkeypress  (0) 2010.05.10
이벤트 핸들러와 이벤트  (0) 2010.05.10
: