2010-04-08 93 views
1

我有一個鏈接,點擊此鏈接後,顯示一個模式。我用ModalDialog與代碼:IE 7和IE 6中的問題顯示 - simplemodal-1.3.4和jquery 1.4.2

$(文件)。就緒(函數(){

//linkTTT is link id 
     $("a#linkTTT").click(function() { 
     //content is id of div that contains content 
      $("#content").modal({ onOpen: function(dialog) { 
       dialog.overlay.fadeIn('slow', function() { 
        dialog.data.hide(); 
        dialog.container.fadeIn('slow', function() { 
         dialog.data.slideDown('slow'); 
        }); 
       }); 
      } 

      }); 


     }); //end a click 
    }); 

Content're包含在,它包括containt文本兩個表和一些圖片

。此應用程序在Firefox 3 +,Chrome和IE8在這裏運行良好

圖片:[http://bian.vn/normal.png]

我在使用IE 6和IE 7的問題在IE 6:

圖片進入:[http://bian.vn/IE6.png]

在IE 7,內容的清理,仍加載後...

圖片進入:[http://bian.vn/IE7.png]

你可以看到截屏在link text

讓我知道你對這個問題的答案 非常感謝。

回答

1

,我發現我的問題的解決方案:)

<div>標籤有id="content",我包括兩個表。我刪除表後。已解決!

感謝觀看:)