我正在使用jQuery UI Sortable'portlets'。使用jQuery UI調整可調整大小的div
我想調整的功能添加到它在jQuery UI
我已經盡了可排序的this Fiddle
我的代碼:
$(function() {
$(".column").sortable({
connectWith: ".column"
});
$(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all")
.find(".portlet-header")
.addClass("ui-widget-header ui-corner-all")
.prepend("<span class='ui-icon ui-icon-minusthick'></span>")
.end()
.find(".portlet-content");
$(".portlet-header .ui-icon").click(function() {
$(this).toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick");
$(this).parents(".portlet:first").find(".portlet-content").toggle();
});
$(".column").disableSelection();
});
我已將可調整大小添加到它。這是你想要的嗎? http://jsfiddle.net/csicky/7DM3Q/8/ – Rudy
是的。但是,當重新調整2個div取得覆蓋...可以避免覆蓋。 –