Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/461.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 将iFrame添加到D3可折叠树插件上的每个节点_Javascript_Jquery_Iframe_D3.js - Fatal编程技术网

Javascript 将iFrame添加到D3可折叠树插件上的每个节点

Javascript 将iFrame添加到D3可折叠树插件上的每个节点,javascript,jquery,iframe,d3.js,Javascript,Jquery,Iframe,D3.js,根据主题,我正在尝试向d3树上的每个节点添加一个小iFrame。 我的目标是,当用户单击树中的某个节点文本时,附加到该节点的iframe将加载与该节点相关联的页面。 到目前为止,我已经在屏幕上获得了一个iframe(使用下面的代码(index.aspx)),但不是在每个节点上,我还获得了可点击节点文本部分,并返回了iframe源的URL。 希望我把我的问题解释得足够清楚 谢谢 function update(source) { // Compute the new tree l

根据主题,我正在尝试向d3树上的每个节点添加一个小iFrame。 我的目标是,当用户单击树中的某个节点文本时,附加到该节点的iframe将加载与该节点相关联的页面。 到目前为止,我已经在屏幕上获得了一个iframe(使用下面的代码(index.aspx)),但不是在每个节点上,我还获得了可点击节点文本部分,并返回了iframe源的URL。 希望我把我的问题解释得足够清楚

谢谢

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 * 180; });

        // Update the nodes…
        var node = svg.selectAll("g.node")
            .data(nodes, function (d) { return d.id || (d.id = ++i); });

        // Enter any new nodes at the parent's previous position.
        var nodeEnter = node.enter().append("g")
            .attr("class", "node")
            .attr("transform", function (d) { return "translate(" + source.y0 + "," + source.x0 + ")"; })
        ;

        nodeEnter.append("circle")
            .attr("r", 1e-6)
            .style("fill", function (d) { return d._children ? "lightsteelblue" : "#fff"; })
            .on("click", click)
        ;

        nodeEnter.append("text")
            .attr("x", function (d) { return d.children || d._children ? -10 : 10; })
            .attr("dy", ".35em")
            .attr("text-anchor", function (d) { return d.children || d._children ? "end" : "start"; })
            .text(function (d) { return d.name; })
            .style("fill-opacity", 1e-6);

        nodeEnter
            .append("a")
            .attr("xlink:href", function (d) { return d.SiteUrl; })
            .append("rect")

            .attr("class", "clickable")
            .attr("y", -6)
            .attr("x", function (d) { return d.children || d._children ? -60 : 10; })
            .attr("width", 50) //2*4.5)
            .attr("height", 12)
            .style("fill", "lightsteelblue")
            .style("fill-opacity", 1e-6) // set to .3 to make visible

            //On mouse hover, page description
            .append("title").text(function (d) { return d.Description; })
        ;

        //iFrame per node
        nodeEnter.append("iframe")
            .attr("src", function(d) {
                return d.SiteUrl;  //src for each frame
            })
            .attr("width", 50)
            .attr("height", 50);


        // Transition nodes to their new position.
        var nodeUpdate = node.transition()
            .duration(duration)
            .attr("transform", function (d) { return "translate(" + d.y + "," + d.x + ")"; });

        nodeUpdate.select("circle")
            .attr("r", 4.5)
            .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.y + "," + source.x + ")"; })
            .remove();

        nodeExit.select("circle")
            .attr("r", 1e-6);

        nodeExit.select("text")
            .style("fill-opacity", 1e-6);

        // Update the links…
        var link = svg.selectAll("path.link")
            .data(links, function (d) { return d.target.id; });

        // Enter any new links at the parent's previous position.
        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 click(d) {
        if (d.children) {
            d._children = d.children;
            d.children = null;
        } else {
            d.children = d._children;
            d._children = null;
        }
        update(d);
    }

svg
元素中不允许使用
iframe
。要包含它们,您需要一个

//每个节点的iFrame
诺丁特
.append('foreignObject')
.attr(“x”,函数(d){return d.x;})
.attr(“y”,函数(d){返回d.y;})
.attr(“宽度”,50)
.attr(“高度”,50);
.append(“iframe”)
.attr(“src”,函数(d){
返回d.SiteUrl;//每个帧的src
})
.attr(“宽度”,50)
.attr(“高度”,50);
我不知道为什么这段代码会像您所建议的那样适用于一个
iFrame

更新:

要将
外来对象
添加到
单击
上的
svg
,请在
单击
功能中执行此操作:

功能点击(d){
d3.select('svg')//这应该是设置视口的父元素
.append('foreignObject')
.attr('class',函数(d){return'对象-'+d.id;})
.attr(“x”,函数(d){return d.x;})
.attr(“y”,函数(d){返回d.y;})
.attr(“宽度”,50)
.attr(“高度”,50);
.append(“iframe”)
.attr(“src”,函数(d){
返回d.SiteUrl;//每个帧的src
})
.attr(“宽度”,50)
.attr(“高度”,50);
}

传递给
click
处理程序的
d
对象是与单击的对象关联的
数据
元素。因此,您可以使用它查找
d.x
d.y
。另外,向
元素添加一个类
,以便以后可以搜索并删除它。

屏幕上仍然没有iFrame。但是,它们确实会出现在浏览器调试控制台中。这可能是因为它是在DOM之后加载的吗?是的。呈现页面上没有显示任何内容,但调试控制台显示-myServer/geometricmodelling/en/14785.aspx“>很抱歉,我不太了解,但浏览器似乎正在尝试在节点之前加载/渲染iFrame。事实上,当它们插入DOM时,浏览器将尝试加载它们。我想只有当用户在
click
函数中单击节点时,才应该将它们添加到DOM中。但是,我不认为
圆圈
标记可以接受它内部的标记。应该在它的容器(或
svg
元素)上添加
iFrames
,并相应地定位它。我如何将iFrames添加到svg容器和位置/