검색-타입1 <!-- searchbox --> <div class="search_table"> <table class="search_input"> <caption>브라더 공지사항 테이블</caption> <colgroup> <col style="width:10%"> <col style="*"> </colgroup> <tbody> <tr> <th scope="row">조건검색</th> <td> <!-- label 값, id값 매칭 --> <label for=""> <select id="" class="search_select"> <option selected="">선택</option> <option>제목</option> <option>작성자</option> <option>제목+내용</option> </select> </label> <label for=""> <span class="blind">검색창</span> <input type="text" id="" class="search_input1"> </label> </td> </tr> </tbody> </table> <div class="searchT_bottom"> <label for=""> <span class="blind">검색버튼</span> <input type="submit" value="검색" id="" class="btn_ap_right btn_search"> </label> </div> </div> <!-- //searchbox -->
검색-타입2 <!-- searchbox --> <div class="search_table"> <table class="search_input"> <caption>브라더 공지사항 테이블</caption> <colgroup> <col style="width:10%"> <col style="40"> <col style="width:10%"> <col style="*"> </colgroup> <tbody> <tr> <th scope="row">등록판매점</th> <td> <label for=""> <span class="blind">검색창</span> <input type="text" id="" class="search_input2"> </label> </td> <th scope="row">거래처명</th> <td> <label for=""> <span class="blind">검색창</span> <input type="text" id="" class="search_input2"> </label> </td> </tr> <tr> <th scope="row">거래처구분</th> <td> <label class="check_notice" for=""> <input id="" class="" type="checkbox"> <span>총판</span> </label> <label class="check_notice" for=""> <input id="" class="" type="checkbox"> <span>2nd Tier </span> </label> <label class="check_notice" for=""> <input id="" class="" type="checkbox"> <span>FT</span> </label> <label class="check_notice" for=""> <input id="" class="" type="checkbox"> <span>Customer</span> </label> </td> <th scope="row">사업자번호</th> <td> <label for=""> <span class="blind">검색창</span> <input type="text" id="" class="search_input2" value="‘ - ’없이 숫자만 입력하세요" onfocus="this.value=''"> </label> </td> </tr> </tbody> </table> <div class="searchT_bottom"> <label for=""> <span class="blind">검색버튼</span> <input type="submit" value="검색" id="" class="btn_ap_right btn_search"> </label> </div> </div> <!-- //searchbox -->
검색-타입3 <!-- searchbox --> <div class="search_table"> <table class="search_input"> <caption>브라더 공지사항 테이블</caption> <colgroup> <col width="10%"> <col width="40%"> <col width="10%"> <col width="40%"> </colgroup> <tbody> <tr> <th scope="row" >조건검색</th> <td colspan="3"> <!-- label 값, id값 매칭 --> <label for=""> <select id="" class="search_select"> <option selected="">선택</option> <option>제목</option> <option>작성자</option> <option>제목+내용</option> </select> </label> <label for=""> <span class="blind">검색창</span> <input type="text" id="" class="search_input1"> </label> </td> </tr> <tr> <th scope="row">등록일</th> <td> <!-- [dev] 클릭시 달력 레이어팝업--> <input type="text" class="cal_input" /> <span> ~ </span> <input type="text" class="cal_input" /> <!-- [dev] 클릭시 달력 레이어팝업--> </td> <th scope="row">사용여부</th> <td> <label class="check_notice" for=""> <input id="" class="" type="checkbox"> <span>사용</span> </label> <label class="check_notice" for=""> <input id="" class="" type="checkbox"> <span>미사용</span> </label> </td> </tr> </tbody> </table> <div class="searchT_bottom"> <label for=""> <span class="blind">검색버튼</span> <input type="submit" value="검색" id="" class="btn_ap_right btn_search"> </label> </div> </div> <!-- //searchbox -->