블로그 이미지

calendar

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
  • total
  • today
  • yesterday
2010. 4. 2. 17:22 JavaScript

<div style="position:relative;">
  <div id="sub_title_option" style="position:absolute;z-index:+10;width:400px;height:400px;border:1px,solid;backgroundColor:blue;display:none">
           <table border='0' cellspacing='0' cellpadding='0' width='100%'>
             <select name="sub_title_no">
               <option value="">==선택==</option>
               <option value="1">수학의정석</option>
               <option value="2">영어완전정복</option>
             </select>
           </table>
           <table border="0" cellspacing="0" cellpadding="0">
             <tr>
               <td align="rignt"><input type="button" value="닫기" onClick="sub_title_option_view('');"></td>
             </tr>
           </table>
         </div>
         </div>


function sub_title_option_view(opt){
    alert(opt);
 if(opt>0){
  document.getElementById('sub_title_option').style.display=""; //보임
 }else{
  document.getElementById('sub_title_option').style.display="none"; //안보임
 }
}
posted by 천상의날개