我是html和joint.js库的初学者。我有这段代码,将其保存为html格式后,可以绘制2个连接的矩形,但浏览器中什么也没有。
我下载了许多库,并将它们放在具有html页面的同一文件夹中,但是什么也没有出现。

我应该怎么办?
在哪里可以将要使用的库放在html代码中?

我下载的库是:


bone.js
core.js
geometry.js
joint.all.css
joint.all.js
联合所有最小css
joint.all.min.js
关节
joint.dia.cell.js
joint.dia.element.js
joint.dia.graph.js
joint.dia.link.js
joint.dia.paper.js
joint.js
最小联合
joint.min.js
joint.shapes.devs.js
joint.shapes.devs.min.js
joint.shapes.erd.js
joint.shapes.erd.min.js
joint.shapes.fsa.js
joint.shapes.fsa.min.js
joint.shapes.org.js
joint.shapes.org.min.js
jquery.js
jquery.sortElements.js
lodash.js
raphael-min.js
raphael.js
vectorizer.js

<link rel="stylesheet" type="text/css" href="joint.css" />
<script type="text/javascript" src="joint.js" ></script>
<script type="text/javascript">

$(function() {
    var graph = new joint.dia.Graph;

    var paper = new joint.dia.Paper({
         el: $('#myholder'),
         width: 600,
         height: 200,
         model: graph
    });

    var rect = new joint.shapes.basic.Rect({
         position: { x: 100, y: 30 },
         size: { width: 100, height: 30 },
         attrs: { rect: { fill: 'blue' }, text: { text: 'my box', fill: 'white' } }
    });

    var rect2 = rect.clone();
    rect2.translate(300);

    var link = new joint.dia.Link({
         source: { id: rect.id },
         target: { id: rect2.id }
    });
       graph.addCells([rect, rect2, link]);
})
</script>


<div id="myholder" >
</div>





感谢大家 ..
在将库的来源更改为网站URL之后,该程序现在可以正常工作。如果我使用在计算机上下载的一次,则无法再次使用:

<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script src= "http://denknix.com/astro/lib/joint/www/build/joint.all.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://www.jointjs.com/downloads/joint.css" />
<script type="text/javascript" src="http://www.jointjs.com/downloads/joint.js" ></script>
<script type="text/javascript">
    $(function() {

        var graph = new joint.dia.Graph;

        var paper = new joint.dia.Paper({
             el: $('#myholder'),
             width: 600,
             height: 200,
             model: graph
        });

        var rect = new joint.shapes.basic.Rect({
             position: { x: 100, y: 30 },
             size: { width: 100, height: 30 },
             attrs: { rect: { fill: 'blue' }, text: { text: 'my box', fill: 'white' } }
        });

        var rect2 = rect.clone();
        rect2.translate(300);

        var link = new joint.dia.Link({
             source: { id: rect.id },
             target: { id: rect2.id }
        });
graph.addCells([rect, rect2, link]);
    })
    </script>

    <title>Test</title>

</head>
<body>

    <div id="myholder" >
    </div>

</body></html>

最佳答案

请注意,您在示例中不需要以下两个文件:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script src= "http://denknix.com/astro/lib/joint/www/build/joint.all.min.js"></script>


这是因为jQuery已包含在joint.js中,而另一个joint.all.min.js是JointJS(0.4)的非常旧的版本。

您只需要正确包含的其他两个文件:

<link rel="stylesheet" type="text/css" href="http://www.jointjs.com/downloads/joint.css" />
<script type="text/javascript" src="http://www.jointjs.com/downloads/joint.js" ></script>


问题必须在于将这些文件下载到计算机后如何引用这些文件。

07-25 20:47