2014-01-08 89 views
0

我在我的asp.net應用程序中使用此示例(http://webdeveloperplus.com/jquery/saving-state-for-collapsible-drag-drop-panels/)。我在Firefox以外的所有瀏覽器中都可以排序,因爲某些原因它會觸發事件,但從不進入代碼。排序不工作在Firefox,但每隔一個瀏覽器

$('.column').sortable({ 
     connectWith: '.column', 
     handle: 'h2', 
     cursor: 'move', 
     placeholder: 'placeholder', 
     forcePlaceholderSize: true, 
     opacity: 0.4, 
     start: function (event, ui) { 
      //Firefox, Safari/Chrome fire click event after drag is complete, fix for that 
      if ($.browser.mozilla || $.browser.safari) 
       $(ui.item).find('.dragbox-content').toggle(); 
     }, 
     stop: function (event, ui) { 
      ui.item.css({ 'top': '0', 'left': '0' }); //Opera fix 
       updateWidgetData(); 
     } 
     }) 
.disableSelection(); 
}); 
+0

這是不是一個完整的,可執行的例子。也許http://www.javascriptlint.com/online_lint.php會給你一些想法。 – David

回答

0

如果我沒有記錯,Firefox不接受具有錯誤數量的參數作爲事件函數的函數。這是根據標準,所以你應該遵守。試試這個:

start: function (event) { 

ui參數不能跟隨事件發生的功能。

0

下面是使用jQuery可排序的所有Chrome &火狐代碼:

您必須刪除線$(#sortable).disableSelection(); jQuery中可排序的代碼。 (參考:Sortable | jQuery UI

<script> 
$(function() { 
    $("#sortable").sortable({ 
     placeholder: "ui-state-highlight" 
    });  
}); 
</script> 

希望它幫助;)

0

我做

$("#stores-container").sortable({ 

    stop: function(event, ui) { 

     textareaID = $(ui.item).find(' textarea').attr('id'); 

     textareaVal=$(ui.item).find(' textarea').val(); 

     editorID=$(ui.item).find('.mce-container').attr('id'); 

     $("#"+editorID).remove(); 

     $('#'+textareaID).show(); 
     tinymce.init({selector: '#'+textareaID}); 
    } 

}); 
相關問題