테이블 코딩 폼 관련 질문입니다.
에드워드
안녕하세요.간단한 코딩인데요입력할수 있는 페이지를코딩해서 이후에 개발자에게 넘기는 페이지입니다.제가 하면서도 허술하다는 느낌이 들었습니다.개발자가 이걸 받아서 개발할 때 편하려면 어떤 방식으로 코딩해서 줘야하는지를 조언을 부탁드립니다.그리고 문제가 많겠지만 전반적으로 수정 보완할 점을간단하게 말씀해주시면 감사하겠습니다.아래 코드와 사진 첨부합니다.!doctype html public -//w3c//dtd xhtml 1.0 transitional//en http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd
html xmlns=http://www.w3.org/1999/xhtml
head
meta http-equiv=content-type content=text/html; charset=utf-8 /
titleactive directory management/title
link href=css/reset.css rel=stylesheet type=text/css
link href=css/main_form.css rel=stylesheet type=text/css
/headbody
div id=wrapper
div class=sub_title사용자 등록/수정/div
div class=search_area
form id= name= action= method=
legend검색/legend
span class=
input id= name= type=text title=검색어 입력 class=search_bar
/span
button id= type=submit title=검색 class=search_buttonspan class=찾기/span/button
/form
/div
form
table class=table01 width=900px summary=
caption
계정
/caption
colgroup
col width=120px /
col width=310px /
col width= /
/colgroup
thead
tr
th colspan=3계정/th
/tr
/thead
tbody
tr
td이름/td
tdinput class=input01 type=text/td
td계정만료
input type=radio name=expired value=
안함
input type=radio name=expired value=
다음 날까지 사용
input type=date/td
/tr
tr
td성/td
tdinput class=input01 type=text/td
tdinput type=checkbox
다음 로그온 시 사용자가 반드시 암호를 변경해야 함/td
/tr
tr
td이니셜/td
tdinput class=input01 type=text/td
tdinput type=checkbox
암호 사용자가 암호를 변경할 수 없음/td
/tr
tr
td class=highlight전체 이름/td
tdinput class=input01 type=text/td
tdinput type=checkbox
암호 사용 기간 제한 없음/td
/tr
tr
td class=highlightupn 로그온/td
tdinput type=text
@
input type=text/td
td/td
/tr
tr
td class=highlightsamaccountname/td
tdinput class=input02 type=text
input class=input02 type=text/td
td/td
/tr
/tbody
/table
/form
form
table class=table02 width=900px summary=&mary=
caption
계정
/caption
colgroup
col width=120px /
col width=310px /
col width=130px /
col width= /
/colgroup
thead
tr
th colspan=4조직/th
/tr
/thead
tbody
tr
td표시 이름/td
tdinput class=input01 type=text/td
td기본전화번호/td
tdinput class=input01 type=text/td
/tr
tr
td전자 메일/td
tdinput class=input01 type=text/td
td집전화번호/td
tdinput class=input01 type=text/td
/tr
tr
td직함/td
tdinput class=input01 type=text/td
td휴대폰/td
tdinput class=input01 type=text/td
/tr
tr
td부서/td
tdinput class=input01 type=text/td
td팩스/td
tdinput class=input01 type=text/td
/tr
tr
td회사/td
tdinput class=input01 type=text/td
tdip전화/td
tdinput class=input01 type=text/td
/tr
/tbody
/table
/form
form
table class=table03 width=900px summary=
caption
계정
/caption
colgroup
col width=50px /
col width=180px /
col width= /
/colgroup
thead
tr
th colspan=3소속 그룹/th
/tr
/thead
tbody
tr
th/th
th그룹명/th
thactive directory 도메인 서비스 폴더/th
/tr
tr
tdinput type=checkbox/td
tddomain users/td
tdhansolinticube/users/td
/tr
tr
tdinput type=checkbox/td
tdadministrators/td
tdhansolinticube/users/td
/tr
/tbody
/table
div class=button_area1
ul
lia href=#그룹 추가/a/li
lia href=#그룹 삭제/a/li
/ul
/div
/form
div class=button_area2
ul
lia href=#저장/a/li
lia href=#최소/a/li
lia href=#활성/a/li
lia href=#비활성화/a/li
lia href=#비밀번호 초기화/a/li
/ul
/div
/div
/body
/html
-
WhiteCat 2023-06-30
네 감사합니다.~
-
눈솔 2023-06-30
button이나 input중 편한걸로 쓰시면됩니다^^
-
하련솔 2023-06-30
음.. li와 button은 아예종류가 다른것입니다. ^^
button대신에쓸수있는것은 input 입니다^^ -
소1유물 2023-06-30
저 궁금한게 있는데요 버튼을 만들때 li 로 만들거나 button태그 이걸로도 할수 있잖아요 저런 폼형식페이지를 만들때는 어떤 태그로 버튼을 형성하는게 좋나요?
-
시아 2023-06-30
감사합니다.~
-
요루 2023-06-30
label 요소로 묶어주시는게좋구요 각 입력필드에 name 속성과 id 속성주시는게 좋습니다. 윗분말씀대로 폼태그는 버튼을포함하고있어야합니다 ^^
-
바론 2023-06-30
그렇군요 조언 감사드립니다.
-
ComeOn 2023-06-30
테이블에 따로 따로 form을 묶지 말고 form한개로 감싸세요. 버튼까지도요. form이 사용자가 입력한것을 서버로 보내는 거기에 버튼까지 한개의 form으로 감싸져야 합니다. 예를 들면 저장 버튼은 사용자가 입력 필드에 남긴걸 서버에 보내는 버튼이기에 같은 form에 감싸져야 합니다.