麻烦使用jQuery UI可调整大小和可拖动在一起

时间:2012-07-10 02:39:39

标签: jquery-ui jquery

我正在尝试允许删除的元素在父容器中可拖动和调整大小。

这是我的CSS:

.toolitem {padding:5px 10px;background:#ececec;border:1px solid silver}.labelitem {width:114px;padding:10px 5px;color:#222;background:#fff;border:1px solid silver}

这是我的HTML:

<header>
 <ul>
     <li><div id="atool" class="toolitem droppable">A</div></li>
     <li><div id="btool" class="toolitem droppable">B</div></li>
 </ul>
 <div class="clear"></div></header><section id="container"/>

这是我的JS:

$(".toolitem").draggable({
    opacity:1,
    tolerance:'fit',
    helper:'clone'
});
$("#container").droppable({
    accept:'.droppable',
    drop: function (event, ui) {
        // Check for new or already dropped element
        var dropped = ui.draggable.data("dropped");
        if (dropped == null && dropped != "1") {
            // Create new element only once
            var label = $('<div class="labelitem droppable">[Label]</div>');
            // Set flag as dropped
            label.data("dropped", "1");
            // Make new element draggable within parent
            label.draggable({ containment: 'parent', grid: [2, 2], helper: 'original' });
            // Make new element resizable within parent
            label.resizable({ containment: 'parent' });
            // Append new element to parent
            label.appendTo(this);
        }
    }
});

上面的代码执行得很好,除了丢弃的div不可调整大小。请帮忙。

1 个答案:

答案 0 :(得分:1)

我自己解决了。谷歌搜索了一个小时后,我发现我错过了以下内容

<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/base/jquery-ui.css" />

需要调整div的样式。现在一切都按预期工作了。但是,奇怪的是它在jQueryUI文档中从未被提及或者我错过了它。