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

标签 javascript jquery iframe d3.js

根据主题,我正在尝试向 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);
    }

最佳答案

iframe 不允许出现在 svg 元素中。要包括它们,您需要 foreignObject tag .

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

我不确定为什么这段代码会像您建议的那样适用于一个 iFrame

更新:

要在 click 上将 foreignObject 添加到 svg,请在 click 函数中执行此操作:

function click(d) {
    d3.select('svg')  // This should be the parent element which set viewport
        .append('foreignObject')
        .attr('class', function (d) { return 'object-' + d.id; })
        .attr("x", function (d) { return d.x; })
        .attr("y", function (d) { return d.y; })
        .attr("width", 50)
        .attr("height", 50);       
        .append("iframe")
        .attr("src", function(d) {
            return d.SiteUrl;  //src for each frame
        })
        .attr("width", 50)
        .attr("height", 50);
}

传递给 click 处理程序的 d 对象是与被单击对象关联的 data 元素。因此,您可以使用它找到 d.xd.y。此外,向 元素 添加一个类,以便稍后搜索和删除它。

关于javascript - 将 iFrame 添加到 D3 可折叠树插件上的每个节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19763852/

相关文章:

javascript - 为什么添加 Javascript 窗口对象时 Vtable 链接会出现问题?

javascript - 如何使用JQuery chop 选项标签的内容?

javascript - 如何从 AWS Lambda 的 URL 解析 JSON

php - 使用 AJAX 根据图像映射点击区域编辑 PHP 查询代码

Javascript - 无法在 iframe 的一个 div 中获取元素

javascript - 三.AngularJS Directive中的JS对象渲染

javascript - Ajax Get 方法不使用 Ember Js 返回值

jquery .html 不应用 CSS

iFrame 和媒体查询问题

html - anchor 标记中的 Iframe。是的,我知道。 IE渲染的问题