0

我正在研究基于 GPS 的产品,而我真正想做的是:

1)在div上拖动一个项目(droppable)

2) 在放置动作时,我将在同一 div 中显示地图并相应地标记信息。

3) 应关闭该特定 div 的可丢弃功能。

问题:除了禁用 droppable 功能外,一切正常。我试图禁用 droppable,但它实际上禁用了 div 容器,因此 MAP 变灰,这是完全不可接受的。

请帮助.. :(这是我的代码:

HTML:

  <table width="100%">
    <tr>
        <td>
            <div style="width: 30%; float: left; height: 500px;">
                <span id="bjcb" class="draggable" style="color:Red">What up</span>
            </div>
            <div style="width: 70%; float: left; height: 500px;">
                <div style="width: 49.5%; height: 50%; float: left;" class="droppable" id="one"></div>
                <div style="width: 50%; height: 50%; float: right;" class="droppable" id="two"></div>
                <div style="width: 49.5%; height: 50%; float: left;" class="droppable" id="three"></div>
                <div style="width: 50%; height: 50%; float: right;" class="droppable" id="four"></div>
            </div>
            </td>
        </tr>
    </table>

JS:

$(function () {
    $(".draggable").draggable({      
        revert: true
    });
    $(".droppable").droppable({
        drop: function (event, ui) {
            alert('dropped');
            $(this).addClass("ui-state-highlight");
            $(this).html(ui.draggable.prop('id'));

            var mapOptions = {
                center: new google.maps.LatLng(-34.397, 150.644),
                zoom: 8,
                mapTypeId: google.maps.MapTypeId.ROADMAP
            };
            var id = $(this).prop('id');

            var map = new google.maps.Map(document.getElementById(id), mapOptions);
            $(this).droppable("option", "disabled", true);
        }
    });
});

CSS:

    .droppable
    {
        background-color: Gray;
        border: solid 1px Red;
    }
    .draggable
    {
        background-color: Transparent;
    }

小提琴:

http://jsfiddle.net/writetobhuwan/LujAv/1/

4

1 回答 1

1

Instead of disabling the drop functionality. Try the following:

$(this).droppable("option", "disabled", true);
$(this).removeClass('ui-droppable ui-state-highlight ui-droppable-disabled ui-state-disabled');

Example:

http://jsfiddle.net/LujAv/8/

于 2013-04-20T20:48:43.950 回答