如何在openlayers中创建链接,使用target =“_ blank”

时间:2015-10-19 19:07:50

标签: href openlayers

何 如何将open =“blank”添加到openlayers 3.10.x组件的元素中的所有链接? - Rüdiger

1 个答案:

答案 0 :(得分:0)

我使用这个jquery代码:

$("#mapDiv").bind("DOMSubtreeModified", function() {
    $("a").each(function() {
        $(this).attr('target', '_blank');
    })
});

看起来像预期的那样工作。

- Tolotos