제이쿼리 dialog 통해서 창하나 띄우는데 이놈의 익스플로러 하위버전에는 높이가 안먹네요 ㅠ,.ㅠ

제이쿼리 dialog 통해서 창하나 띄우는데 이놈의 익스플로러 하위버전에는 높이가 안먹네요 ㅠ,.ㅠ

QA

제이쿼리 dialog 통해서 창하나 띄우는데 이놈의 익스플로러 하위버전에는 높이가 안먹네요 ㅠ,.ㅠ

답변 1

본문

 

height 250으로 설정했는데요 

 

크롬, 익스 상위버전은 먹히는데 

 

익스 하위버전만 안먹네요 ㅠ,ㅠ 

 

참 ㅠ,ㅠ 개발자로써 이런게 힘드네요 ㅠ.ㅠ 

 

구원을 요청합니다 ㅠ,ㅠ 방법이 없을까요? 

 

익스 하위버전만 높이가 낮게 나옵니다 ㅠ,ㅠ

 

 


HTML==========
<div id="dialog" title="일정등록" style="display: none;" style="">
  <div>
    <form id="schedule-form">
      <input type="hidden" name="sch_uid" id="sch_uid">
      <table border="0" cellpadding="7" cellspacing="1" width="100%" bgcolor="#dddddd">
        <colgroup>
          <col width="70">
          <col>
        </colgroup>
        <tbody>
        <tr>
          <td bgcolor="#eeeeee">일정내용</td>
          <td bgcolor="#ffffff">
            <input type="text" name="subject" id="subject" size="30" onkeyup="countBytes_sch(this, 'word_byte');" onkeydown="countBytes_sch(this, 'word_byte');" style="width: 160px; border: 1px solid #bebebe;">
            <span id="word_byte">0/60 byte</span>
          </td>
        </tr>
        <tr id="sch_alarm">
          <td bgcolor="#eeeeee">일정알림</td>
          <td bgcolor="#ffffff">
            <input type="radio" name="use_notice" id="notice_y" value="Y" checked><label for="notice_y">사용</label>
            <input type="radio" name="use_notice" id="notice_n" value="N"><label for="notice_n">미사용</label>
            + <font class="blue">일정내용이 내 핸드폰으로 전송됩니다.</font>
          </td>
        </tr>
        <tr id="sch_time">
          <td bgcolor="#eeeeee">알림시간</td>
          <td bgcolor="#ffffff">
            <input type="hidden" name="notice_date" id="notice_date" style="width: 100px; border: 1px solid #bebebe;">
 
            <select name="notice_hour" id="notice_hour" style="width: 50px;">
    <?php
    for ( $i = 0; $i < 24; $i++ ) {
      $j = str_pad( $i, 2, '0', STR_PAD_LEFT );
    ?>
              <option value="<?php echo $j ?>"><?php echo $j ?></option>
    <?php
    }
    ?>
            </select>시
            <select name="notice_minute" id="notice_minute" style="width: 50px;">
    <?php
    for ( $i = 0; $i < 60; $i++ ) {
      $j = str_pad( $i, 2, '0', STR_PAD_LEFT );
    ?>
              <option value="<?php echo $j ?>"><?php echo $j ?></option>
    <?php
    }
    ?>
            </select>분
          </td>
        </tr>
      </tbody>
      </table>
    </form>
  </div>
</div>
 
 
 
<script>
jq(".sch_new").click(function() { // <-- 클릭 이벤트 클릭하게되면 id값 dialog이 창이 띄어진다.
    생략........
 
    jq( "#dialog" ).dialog({
//      autoOpen: false,
 
      height: 250,  //250으로 했는데 ㅠ,ㅠ 익스 하위버전만 안먹습니다 ㅠ,ㅠ
      width: 450,
      modal: true,
      buttons: {
        "저장" : addSchedule,
        "닫기" : function() {
          resetDialog();
        }
      },
      close: function() {
        resetDialog();
      }
    });
    jq( "#dialog" ).dialog( "option", "title", date + " 일정등록" );
  });

이 질문에 댓글 쓰기 :

답변 1

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 125,873
© SIRSOFT
현재 페이지 제일 처음으로