. Html5 에서 javascript 없이 이 입력창을 작성 하세요 라고 나옵니다.
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 |
<!DOCTYPE HTML> <html lang="ko"> <head> <meta http-equiv="X-UA-Compatible" content="IE=Edge;" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <table class="regi_tit" width="786" cellpadding="0" cellspacing="0"> <tr> <td class="first"> <input type="text" style="width:100px;font-size:11px;" id="name" name="name" maxlength="40" placeholder="예)홍길동" Required="true" onblur="onlyChar(this);" value=""/> <input type="hidden" id="custno" name="custno" value=""/> <input type="hidden" id="cust_id" name="cust_id" value=""/> </td> </tr> <tr> <td> <input type="text" style="ime-mode:inactive;width:180px;font-size:11px;" id="email" name="email" maxlength="50" placeholder="예)mail@mail.co.kr" autocomplete="off" Required="true" onKeyUp="isEmail(this);" value=""/> </td> </tr> <tr> <td> <select id="hphone1" name="hphone1" style="width:50px;font-size:11px;"> <option value="010">010</option> <option value="011">011</option> <option value="016">016</option> <option value="017">017</option> <option value="018">018</option> <option value="019">019</option> </select> - <input type="text" style="width:36px;font-size:11px;" id="hphone2" name="hphone2" maxlength="4" Required="true" onKeyUp="isOnlyNumber(this);" value="" /> - <input type="text" style="width:36px;font-size:11px;" id="hphone3" name="hphone3" maxlength="4" Required="true" onKeyUp="isOnlyNumber(this);" value="" /> </td> </tr> <tr> <td> <input type="password" style="width:65px;font-size:11px;ime-mode:inactive;" id="password" name="password" value="" Required="true" maxlength="10"/> </td> </tr> <tr> <td> <select id="phone1" name="phone1" style="width:50px;font-size:11px;"> <option value="02">02</option> <option value="031">031</option> <option value="032">032</option> <option value="033">033</option> <option value="041">041</option> <option value="042">042</option> <option value="043">043</option> <option value="051">051</option> <option value="052">052</option> <option value="053">053</option> <option value="054">054</option> <option value="055">055</option> <option value="061">061</option> <option value="062">062</option> <option value="063">063</option> <option value="064">064</option> <option value="070">070</option> </select> - <input type="text" style="width:36px;font-size:11px;" id="phone2" name="phone2" maxlength="4" Required="true" onKeyUp="isOnlyNumber(this);" value=""/> - <input type="text" style="width:36px;font-size:11px;" id="phone3" name="phone3" maxlength="4" Required="true" onKeyUp="isOnlyNumber(this);" value=""/> </td> </tr> </table> </body> </html> |