Radio

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

라디오 단추라는 것은 폼에서 여러 개의 선택사항 중 하나만을 선택할 수 있게 하는 개체이다.

property(속성)

method(메써드)

event handlers

netscape6.0

Expolorer

netscape6.0

Explorer

공통

checked
checked
focus
Focus
onBlur
defaultChecked
defaultChecked
select
select
onClick
form
form
blur
blur
onDblClick
name
name
click
click
onfocus
type
type
 
applyElement
onKeyDown
value
value
addEventListener
attachEvent
onKeyUp
size
size
removeEventListener
detachEvent
onKeyPress
defaultValue
defaultValue
insertBefore
insertBefore
onMouseDown
accessKey
accessKey
replaceChild
replaceChild
onMouseUp
id
id
removeChild
removeChild
onMouseOver
title
title
../data/lecture/hcjd/appendixcdChild
../data/lecture/hcjd/appendixcdChild
onMouseOut
lang
lang
hasChildNodes
hasChildNodes
 
dir
dir
cloneNode
cloneNode
 
className
className
 
removeNode
 
style
style
 
replaceNode
 
innerHTML   
 
 
swapNode
 
 
outerHTML
 
clearAttributes
 
 
outerText
getAttribute
getAttribute
 
tagName
tagName
setAttribute
setAttribute
 
offsetTop
offsetTop
removeAttribute
removeAttribute
 
offsetLeft
offsetLeft
 
mergeAttributes
 
offsetWidth
offsetWidth
getAttributeNode    
   
offsetHeight
offsetHeight
setAttributeNode    
   
offsetParent
offsetParent
removeAttributeNode 
   
 
clientHeight
getElementsByTagName
   
 
clientLeft
 
contains
 
 
clientTop
 
insertAdjacentHTML
 
 
clientWidth
 
insertAdjacentText
 
 
isContentEditable
 
insertAdjacentElement
 
 
contentEditable
 
getAdjacentText
 
 
canHaveChildren
 
replaceAdjacentText
 
 
canHaveHTML
 
setActive
 
ownerDocument   
 
 
setExpression
 
nodeName
nodeName
 
getExpression
 
nodeValue
nodeValue
 
removeExpression
 
nodeType
nodeType
 
scrollIntoView
 
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개체를 참고하세요.

 

 

<INPUT type="radio"  name=" " value=" " >

 

Checked

라디오 버튼이 선택된 상태를 나타내는 속성이다.
 

 

object.checked [ = ①boolean ]

① Boolean 값으로 지정할 수 있는 것은 다음과 같다.
true
라디오 버튼이 선택된 상태
false
라디오 버튼이 선택되지 않은 상태
 

DefaultChecked

이 속성은 라디오 개체를 나타내는 input 태그 안에서 checked 속성이 지정되었는지를 나타내는 것으로 지정되었으면 defaultChecked 속성은 true이고 그렇지 않으면 flase이다.
 

form

라디오 버튼개체를 포함하고 있는 폼을 나타내는 속성이다.
 

 

object.form

 

name

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

 

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

 

type

이 속성은 라디오 버튼 개체의 type을 나타내는 것으로 항상 " radio "이다.
 

value

폼이 서버로 제출될 때 라디오 버튼 개체의 값을 나타내는 속성이다.
 

 

[ ①string = ] radioobject.value

① string : 보내질 값을 나타내는 문자열
 

defaultValue

개체의 기본값을 나타내는 속성이다.
 

 

 object.defaultValue [ = ①string ]
① string: 개체의 기본값을 지정하는 문자열

 

disabled

사용자가 Radio 개체를 사용 가능한 상태로 만들것인지를 지정하는 속성이다.
 

 

object.disabled [ = ①boolean ]
① Boolean 값으로 지정할 수 있는 것은 다음과 같다.
true
Radio 개체를 꺼 놓은 상태
false
Radio 개체를 꺼 놓지 않은 상태
 

size

라디오 버튼개체의 크기를 나타내는 속성이다.
 

 

object.size [ = ①interger ]
 ①Integer : 문자수로 계산된 개체의 크기를 지정하는 정수

 

status

라디오 버튼 선택가능하게 할지를 지정하는 속성이다.
 

 

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

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

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

SELECT  (0) 2010.05.10
Option  (0) 2010.05.10
Text|Password  (0) 2010.05.10
Hidden  (0) 2010.05.10
Fileupload (파일 업로드)  (0) 2010.05.10
: