jquery
  • jquery-ui-dialog
  • thickbox
  • 2011-08-17 41 views 0 likes 
    0

    Thickbox被折舊並在jQuery UI選項卡中使用時導致問題。在轉移到使用標籤之前,我只是簡單地調用thickbox,其中正常工作,包括我的遠程源代碼的URL。有沒有一種通用的方式可以使jQuery UI對話框與thickbox解決方案一樣工作?jQuery Ui - 用於UI對話框的交換thickbox

    我打電話ThickBox的,像這樣:

    <a href="URLHERE" class="thickbox" disabled title='Select a value from the list provided'><img border=0 src='images/zoom.png'></a> 
    

    回答

    0

    與UI對話框替換:

    $('.thickbox').click(function(){ 
         var href = $(this).attr("rel"); 
         var dialogTitle= $(this).attr("title"); 
    
         $("#testDialogID").load(href, function() { 
          var container = $(this); 
          container.dialog({ 
           bgiframe: true, 
           opacity: false, 
           title: dialogTitle, 
           modal: true 
          }) 
         }); 
    
        }); 
    
    +1

    第一個答案的答案是不完整的。我們是否需要用「testDialogID」ID創建一個div?答案中沒有任何內容告訴我如何實際實現jQuery-UI-dialog作爲thickbox的替代品。 – Everett

    相關問題