我在我的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();
});
這是不是一個完整的,可執行的例子。也許http://www.javascriptlint.com/online_lint.php會給你一些想法。 – David