테이블 코딩 폼 관련 질문입니다.
에드워드
안녕하세요.간단한 코딩인데요입력할수 있는 페이지를코딩해서 이후에 개발자에게 넘기는 페이지입니다.제가 하면서도 허술하다는 느낌이 들었습니다.개발자가 이걸 받아서 개발할 때 편하려면 어떤 방식으로 코딩해서 줘야하는지를 조언을 부탁드립니다.그리고 문제가 많겠지만 전반적으로 수정 보완할 점을간단하게 말씀해주시면 감사하겠습니다.아래 코드와 사진 첨부합니다.!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에 감싸져야 합니다.
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2700452 | c언어에서... 자료형 구분.... (3) | 시내 | 2025-07-05 |
2700422 | 버전에 관해 질문 | 라온제나 | 2025-07-04 |
2700393 | mysql이 갑자기!!!!!!!!!!!!!!!에러가;; (2) | 소미 | 2025-07-04 |
2700359 | 3.0 ) SimpleButton 상태 강제 변경 (3) | 희선 | 2025-07-04 |
2700304 | ie8 전용핵 문의 (3) | 여자 | 2025-07-03 |
2700281 | 이런경우 어떻게 코딩해야 표준에 따르는건가요? (6) | 늘솜 | 2025-07-03 |
2700230 | 질문이여 ! | 뿡뿡몬 | 2025-07-03 |
2700205 | 액션스크립트책 좀 추천해주세요. (10) | 화이트캣 | 2025-07-02 |
2700173 | 자바 소스인데 어떤게 에러인지..? (1) | 호빵녀 | 2025-07-02 |
2700142 | 하단이 붙어있는 가변 레이아웃구조 질문드립니다. | 이플 | 2025-07-02 |
2700089 | 이미지를 사다리꼴로 비틀게 하는 액션코드가 있나요? (4) | 여름 | 2025-07-01 |
2700033 | 배경에 그라데이션을 넣으려고 하는데요.. (4) | 화이티 | 2025-07-01 |
2700005 | [질문] TextField 객체의 실제 높이 알아오는 방법 ? | 천사의눈물 | 2025-07-01 |
2699978 | FileReferenceList를 이용하여 업로드시 자꾸 실행속도가 느리다는 팝업이... (10) | 데이비드 | 2025-06-30 |
2699944 | 자바스크립트가 많은 사이트는... (6) | 희나리 | 2025-06-30 |
2699918 | 브라우저마다 다른 input과 텍스트 정렬 (3) | 늘봄 | 2025-06-30 |
2699887 | 동적텍스트를 그래픽으로?? (2) | 족장 | 2025-06-30 |
2699862 | scope넣기 (1) | 아인 | 2025-06-29 |
2699835 | exe로 만드는 방법을....알려주세요.. (5) | 방방 | 2025-06-29 |
2699809 | 롤오버할때 백그라운드 이미지로할때 alt설명은 어떻게해야하죠?..ㅠ (4) | 반혈 | 2025-06-29 |