簡體   English   中英

JsPlumb - 在可拖動元素上使用時,端點不刷新位置

[英]JsPlumb - Endpoints do not refresh position when used on draggable element

我開始使用jsPlumb和JQuery,我想連接可拖動的元素,但如果我在連接之前添加可拖動的行為,那么連接不會刷新位置。

我的代碼:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
        <title></title>

        <style type="text/css">
            .window {
                background-color: white;
                border: 3px solid #346789;
                color: black;
                font-family: helvetica;
                font-size: 0.8em;
                height: 12em;
                opacity: 0.8;
                padding: 0.5em;
                position: absolute;
                width: 14em;
                z-index: 20;
            }
        </style>

        <script type="text/javascript" src="jquery.min.js"></script>
        <script type="text/javascript" src="jquery-ui.min.js"></script>
        <script type="text/javascript" src="jquery.jsPlumb-1.3.2-all-min.js"></script>
    </head>
    <body>
    <div>
        <div id="a" class="a window" style="width: 100px;height: 100px;border: solid 1px"></div>
        <div id="b" class="b window" style="width: 100px;height: 100px;border: solid 1px;"></div>
    </div>
    <script type="text/javascript">

        $(document).ready(function() {

            $(".window").draggable();

            var a = $("#a");
            var b = $("#b");
            jsPlumb.connect({
                source:a,
                target:b,
                connector:["Bezier",68],
                endpoints:[
                    ["Dot",{radius:12}],
                    ["Rectangle",{width:20,height:30}]
                ]
            });
        });
    </script>
    </body>
    </html>

我寫了jsPlumb。

它沒有刷新的原因是它無法知道被拖動的東西。 而不是調用$(“。window”)。draggable(),您需要讓jsPlumb在建立連接時為您執行此操作,或者通過此方法:

jsPlumb.draggable($() “的窗口。”);

第一個選項不會初始化任何沒有連接的窗口的拖動。 第二個會。

有幾種方法可以這樣做 - 請參閱jsPlumb文檔

,但一般你可以使用:

  1. 元素的ID
  2. 元素數組
  3. 或者選擇器(例如前面提到的類選擇器: jsPlumb.draggable($(".window"));

這是一個工作示例:

<!DOCTYPE html>
<html>
<head>
    <title>JS plumb test</title>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
        <script type="text/javascript" src="/include/jquery.jsPlumb-1.3.16-all-min.js"></script>

    <style>
        .window { 
            background-color: #EEEEEF;
            border: 1px solid #346789;
            border-radius: 0.5em;
            box-shadow: 2px 2px 19px #AAAAAA;
            color: black;
            height: 5em;
            position: absolute;
            width: 5em;
            cursor: pointer;
        }
    </style>

    <script>

        jsPlumb.ready(function () {

            // three ways to do this - an id, a list of ids, or a selector (note the two different types of selectors shown here...anything that is valid jquery will work of course)

            //jsPlumb.draggable("container0");
            //jsPlumb.draggable(["container0", "container1"]);
            jsPlumb.draggable($(".window"));

            //perform operation only after DOM is loaded
            var e0 = jsPlumb.addEndpoint("container0"),
                e1 = jsPlumb.addEndpoint("container1");



            jsPlumb.connect({ source: e0, target: e1 });


        });


    </script>

</head>
 <body >
     <div class="window" style="left: 20px" id="container0">
     </div>

    <div class="window"  style="left: 200px" id="container1">
    </div>
</body>
</html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM