7dc9a537cf5a352ef5285f28b89bc9b3e3741cf2.svn-base
2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
var RichElement = {
// 폼 데이터 필드 인지/아닌지
isInput :
function()
{
return ( this.tagName != undefined && this.tagName.toLowerCase() == "input" ) ;
},
// 폼 이름 가져오기
getFormNm :
function()
{
return this.form.name ;
},
// 엘레먼트 이름 가져오기
getNm :
function()
{
return this.name ;
},
// 엘레먼트의 타입을 가져온다.
getType :
function()
{
return this.type ;
},
// 속성 값 가져오기
getA :
function (name)
{
return this.getAttribute(name) ;
},
// 스타일 값 가져오기
getS :
function(name)
{
return this.style[name] ;
},
// 텍스트 값 가져오기
getT :
function()
{
var type = this.getType() ;
if( type == "select-one" )
return this.options(this.selectedIndex) ;
else if( this.innerHTML )
return this.innerHTML ;
else
return this.value ;
},
// value 값 가져오기
getV :
function()
{
return this.value ;
},
// 속성 값 세팅하기
setA :
function(name,value)
{
this.setAttribute(name,value) ;
},
// 스타일 값 세팅하기
setS :
function(name,value)
{
this.style[name] = value ;
},
// 텍스트 값 세팅
setT :
function(value)
{ if( this.innerHTML )
this.innerHTML = value ;
else
this.value = value ;
},
// 텍스트 값 세팅
setV :
function(value)
{
this.value = value ;
},
// 객체 사용 여부 세팅
able :
function(isAble)
{
this.disabled = isAble ;
},
// 읽기 전용으로 할것인지
readable :
function(isAble)
{
this.readOnly = isAble ;
},
// 객체 숨기기 V0.5
// true/false 랜더링 여부
hide :
function(isRendering)
{
if( isRendering == true )
this.setS('visibility','hidden') ;
else
this.setS('display','none') ;
},
// 객체 보이기 V0.5
// true/false 랜더링 여부
show :
function(isRendering)
{
if( isRendering == true )
this.setStyle('visibility','visible') ;
else
this.setStyle('display','inline') ;
}
} ;
// Class Aliasing
Object.extend(RichElement,{
get : RichElement.getA,
set : RichElement.setA
}) ;