tbody를 숨겨줄 수 있나요?
오미자
디폴트로 위와같이 되어 있구요,
가로와 세로에 값을 넣어주면 아래와 같이 가로타이틀명 테이블과 세로타이틀명 테이블에 항목이 생깁니다.div
table
colgroup
col style=width:20%;
col style=width:30%;
col style=width:15%;
col style=width:35%;
/colgroup
tbody
tr
th가로/th
tdinput type=text style=width:90%;/td
th세로/th
tdinput type=text style=width:90%;/td
/tr
/tbody
/table
/div
div class=table_w
img src=images/ko/subtitle_34.gif width=200 height=23 alt=가로타이틀명
table
colgroup
col style=width:20%;
col style=width:80%;
/colgroup
thead
tr
thNo/th
td타이틀명/td
/tr
/thead
tbody
tr
th1/th
tdinput type=text style=width:90%;/td
/tr
tr
th2/th
tdinput type=text style=width:90%;/td
/tr
tr
th3/th
tdinput type=text style=width:90%;/td
/tr
/tbody
/table
/div
div class=table_h
img src=images/ko/subtitle_35.gif width=200 height=23 alt=세로타이틀명
table
colgroup
col style=width:20%;
col style=width:80%;
/colgroup
thead
tr
thNo/th
td타이틀명/td
/tr
/thead
tbody
tr
th1/th
SPAN sttdinput type=text style=width:90%;/td
/tr
tr
th2/th
tdinput type=text style=width:90%;/td
/tr
tr
th3/th
tdinput type=text style=width:90%;/td
/tr
/tbody
/table
/div
요렇게 해 준 담에 자바스크립트로 table_w와 table_h의 tbody에 tr의 갯수를 제어해주려고 합니다.
이게 과연 가능한가요??
입력해주는 값이 0 일 경우 tbody에 아무런 열도 들어가지 않게 되는데,
그래도 문제 없는건가요?
그리고 tbody의 tr을 자바스크립트로 제어해 줄수 있나요?
아니면 밑에 table_w와 table_h는
div class=table_w
img src=images/ko/subtitle_34.gif width=200 height=23 alt=가로타이틀명
dl
dtNo/dt
dt타이틀명/dt
/dl
dl
dd1/dd
ddinput type=text style=width:90%;/dd
/dl
dl
dd2/dd
ddinput type=text style=width:90%;/dd
/dl
dl
dd3/dd
ddinput type=text style=width:90%;/dd
/dl
/div
요렇게 해 주는게 더 나을까요?
-
화가마
thead
tr
thNo/th
td타이틀명/td
/tr
/thead
그리고 여담이지만 이건 둘다 th로 해주세요 ^^ -
맛깔손
tbody 필수입니다. 위의 디자인을 dt로 변경한다는건 전혀의미없는 행위입니다.
table의 scope나 headers를 활용할수 없으니깐요.
tr td추가는 createElement(') 이랑 appendChild(')를 활용하시면 됩니다.
자세한건 phpschool.com같은데 찾아보세요~