简体   繁体   English

怎么跑<script> from a button

[英]how to run <script> from a button

I am new web page design and I am drawing a tree using a javascript library. 我是新的网页设计人员,正在使用javascript库绘制树。 My problem is that it is drawn automatically when the page is loaded. 我的问题是,页面加载后会自动绘制。 I would like to have a button and clicking on the painting but I can not find how to do it. 我想要一个按钮,然后单击绘画,但是找不到如何做。 Try to pass the function to a javascript file but when passing it I do not know what to call this in the html file. 尝试将函数传递给javascript文件,但是在传递函数时,我不知道在html文件中如何称呼它。

Here is the fiddle https://jsfiddle.net/nse4w959/ 这是小提琴https://jsfiddle.net/nse4w959/

<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
        var treeData = [
     {
        "name": "Top Level",
        "parent": "null",
        "children": [
          {
            "name": "Level 2: A",
            "parent": "Top Level",
            "children": [
              {
                "name": "Son of A",
                "parent": "Level 2: A"
              },
              {
                "name": "Daughter of A",
                "parent": "Level 2: A"
              }
            ]
          },
          {
            "name": "Level 2: B",
            "parent": "Top Level"
          }
    ]
    }
    ];
    // ************** Generate the tree diagram  *****************
    var margin = {top: 40, right: 120, bottom: 20, left: 120},
    width = 960 - margin.right - margin.left,
    height = 500 - margin.top - margin.bottom;
    var i = 0;
    var tree = d3.layout.tree().size([height, width]);
    var diagonal = d3.svg.diagonal().projection(function(d) { return [d.x, d.y]; });
    var svg = d3.select("body").append("svg")
    .attr("width", width + margin.right + margin.left)
    .attr("height", height + margin.top + margin.bottom).append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");
    root = treeData[0];
    update(root);
    function update(source) {
     // Compute the new tree layout.
    var nodes = tree.nodes(root).reverse(),
    links = tree.links(nodes);
    // Normalize for fixed-depth.nodes.forEach(function(d) { d.y = d.depth * 100; });
    // Declare the nodes…
    var node = svg.selectAll("g.node").data(nodes, function(d) { return d.id || (d.id = ++i); });
    // Enter the nodes.
    var nodeEnter = node.enter().append("g").attr("class", "node")
    .attr("transform", function(d) {
     return "translate(" + d.x + "," + d.y + ")"; });
    nodeEnter.append("circle").attr("r", 10).style("fill", "#fff");
    nodeEnter.append("text").attr("y", function(d) {
          return d.children || d._children ? -18 : 18; })
      .attr("dy", ".35em")
      .attr("text-anchor", "middle")
      .text(function(d) { return d.name; })
      .style("fill-opacity", 1);
    // Declare the links…
    var link = svg.selectAll("path.link")
    .data(links, function(d) { return d.target.id; });
     // Enter the links.
     link.enter().insert("path", "g")
      .attr("class", "link")
      .attr("d", diagonal);
    }
</script>

调用按钮的最简单方法是

<button onclick="update()">Update</button>

You can wrap your code with a Javascript function and fire it using onclick attribute of a button. 您可以使用Javascript函数包装代码,然后使用按钮的onclick属性触发它。

Check code below and see how it works 检查下面的代码,看看它如何工作

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Collapsible Tree Example</title>
<style>
.node circle {
  fill: #fff;
  stroke: steelblue;
  stroke-width: 3px;
}

.node text { font: 12px sans-serif; }

.link {
  fill: none;
  stroke: #ccc;
  stroke-width: 2px;
}
</style>
</head>
<body>

<!-- load the d3.js library --> 
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>

function renderTree() {

var treeData = [
 {
"name": "Top Level",
"parent": "null",
"children": [
  {
    "name": "Level 2: A",
    "parent": "Top Level",
    "children": [
      {
        "name": "Son of A",
        "parent": "Level 2: A"
      },
      {
        "name": "Daughter of A",
        "parent": "Level 2: A"
      }
    ]
  },
  {
    "name": "Level 2: B",
    "parent": "Top Level"
  }
]
}
];
// ************** Generate the tree diagram  *****************
var margin = {top: 40, right: 120, bottom: 20, left: 120},
width = 960 - margin.right - margin.left,
height = 500 - margin.top - margin.bottom;
var i = 0;
var tree = d3.layout.tree().size([height, width]);
var diagonal = d3.svg.diagonal().projection(function(d) { return [d.x, d.y]; });
var svg = d3.select("body").append("svg")
.attr("width", width + margin.right + margin.left)
.attr("height", height + margin.top + margin.bottom).append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
root = treeData[0];
update(root);
function update(source) {
 // Compute the new tree layout.
var nodes = tree.nodes(root).reverse(),
links = tree.links(nodes);
// Normalize for fixed-depth.nodes.forEach(function(d) { d.y = d.depth * 100; });
// Declare the nodes…
var node = svg.selectAll("g.node").data(nodes, function(d) { return d.id || (d.id = ++i); });
// Enter the nodes.
var nodeEnter = node.enter().append("g").attr("class", "node")
.attr("transform", function(d) { 
 return "translate(" + d.x + "," + d.y + ")"; });
nodeEnter.append("circle").attr("r", 10).style("fill", "#fff");
nodeEnter.append("text").attr("y", function(d) { 
      return d.children || d._children ? -18 : 18; })
  .attr("dy", ".35em")
  .attr("text-anchor", "middle")
  .text(function(d) { return d.name; })
  .style("fill-opacity", 1);
// Declare the links…
var link = svg.selectAll("path.link")
.data(links, function(d) { return d.target.id; });
 // Enter the links.
 link.enter().insert("path", "g")
  .attr("class", "link")
  .attr("d", diagonal);
}

}
</script>
<input type="button" value="Render" onclick="renderTree();">
</body>
</html>

Supported at https://www.codeproject.com/Tips/1021936/Creating-Vertical-Collapsible-Tree-With-d-js https://www.codeproject.com/Tips/1021936/Creating-Vertical-Collapsible-Tree-With-d-js支持

html file html文件

<html>
<head>
<script src="http://d3js.org/d3.v3.min.js"></script>
</head>
<body>
<input id="clickMe" type="button" value="Click Me" onclick="go();" />
<div id="tree">
</div>
</body>
</html>

css file CSS文件

.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 3px;
}
.node text {
font: 12px sans-serif;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 2px;
}
.tree {
margin-bottom: 10px;
overflow: auto;
}

js file js文件

function go(){
var treeData =
  {
      "name": "Top Level",
      "parent": "null",
      "children": [
        {
            "name": "Level 2: A",
            "parent": "Top Level",
            "children": [
              {
                  "name": "Son of A",
                  "parent": "Level 2: A",
                   "children": []
              },
              {
                  "name": "Daughter of A",
                  "parent": "Level 2: A",
                  "children": []
              }
            ]
        },
        {
            "name": "Level 2: B",
            "parent": "Top Level",
            "children": []
        }
      ]
  };
BuildVerticaLTree(treeData,"#tree");
}
function BuildVerticaLTree(treeData, treeContainerDom)      {
  var margin = {
    top: 40,
    right: 120,
    bottom: 20,
    left: 120
  };
  var width = 960 - margin.right - margin.left;
  var height = 960 - margin.top - margin.bottom;

  var i = 0,
    duration = 750;
  var tree = d3.layout.tree()
    .size([height, width]);
  var diagonal = d3.svg.diagonal()
    .projection(function(d) {
      return [d.x, d.y];
    });
  var svg = d3.select(treeContainerDom).append("svg")
    .attr("width", width + margin.right + margin.left)
    .attr("height", height + margin.top + margin.bottom)
    .append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");
  root = treeData;

  update(root);

  function update(source) {
    // Compute the new tree layout.
    var nodes = tree.nodes(root).reverse(),
      links = tree.links(nodes);
    // Normalize for fixed-depth.
    nodes.forEach(function(d) {
      d.y = d.depth * 100;
    });
    // Declare the nodes…
    var node = svg.selectAll("g.node")
      .data(nodes, function(d) {
        return d.id || (d.id = ++i);
      });
    // Enter the nodes.
    var nodeEnter = node.enter().append("g")
      .attr("class", "node")
      .attr("transform", function(d) {
        return "translate(" + source.x0 + "," + source.y0 + ")";
      }).on("click", nodeclick);
    nodeEnter.append("circle")
      .attr("r", 10)
      .attr("stroke", function(d) {
        return d.children || d._children ? "steelblue" : "#00c13f";
      })
      .style("fill", function(d) {
        return d.children || d._children ? "lightsteelblue" : "#fff";
      });
    //.attr("r", 10)
    //.style("fill", "#fff");
    nodeEnter.append("text")
      .attr("y", function(d) {
        return d.children || d._children ? -18 : 18;
      })
      .attr("dy", ".35em")
      .attr("text-anchor", "middle")
      .text(function(d) {
        return d.name;
      })
      .style("fill-opacity", 1e-6);
    // Transition nodes to their new position.
    //horizontal tree
    var nodeUpdate = node.transition()
      .duration(duration)
      .attr("transform", function(d) {
        return "translate(" + d.x + "," + d.y + ")";
      });
    nodeUpdate.select("circle")
      .attr("r", 10)
      .style("fill", function(d) {
        return d._children ? "lightsteelblue" : "#fff";
      });
    nodeUpdate.select("text")
      .style("fill-opacity", 1);


    // Transition exiting nodes to the parent's new position.
    var nodeExit = node.exit().transition()
      .duration(duration)
      .attr("transform", function(d) {
        return "translate(" + source.x + "," + source.y + ")";
      })
      .remove();
    nodeExit.select("circle")
      .attr("r", 1e-6);
    nodeExit.select("text")
      .style("fill-opacity", 1e-6);
    // Update the links…
    // Declare the links…
    var link = svg.selectAll("path.link")
      .data(links, function(d) {
        return d.target.id;
      });
    // Enter the links.
    link.enter().insert("path", "g")
      .attr("class", "link")

    .attr("d", function(d) {
      var o = {
        x: source.x0,
        y: source.y0
      };
      return diagonal({
        source: o,
        target: o
      });
    });
    // Transition links to their new position.
    link.transition()
      .duration(duration)
      .attr("d", diagonal);


    // Transition exiting nodes to the parent's new position.
    link.exit().transition()
      .duration(duration)
      .attr("d", function(d) {
        var o = {
          x: source.x,
          y: source.y
        };
        return diagonal({
          source: o,
          target: o
        });
      })
      .remove();

    // Stash the old positions for transition.
    nodes.forEach(function(d) {
      d.x0 = d.x;
      d.y0 = d.y;
    });
  }

  // Toggle children on click.
  function nodeclick(d) {
    if (d.children) {
      d._children = d.children;
      d.children = null;
    } else {
      d.children = d._children;
      d._children = null;
    }
    update(d);
  }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM