5

问题空间:

我有一个 SVG 地图,我使用 JQUERY Ajax 将其嵌入到 html 中。然后我使用 java 脚本来处理 svg 对象中的许多元素,以更改属性并添加基于数据系列的事件侦听器。数据和地图是交互的。用户可以通过多种排列更改状态。

我也在使用 JQUERY UI 1.10.3 选项卡

有很多类别。因此,根据演示文稿的不同,同一选项卡上可能有多个 svg 地图副本,并且许多不同的选项卡具有相同的 svg 地图。

svg 文档的每个副本都具有相同的元素 ID。我遇到的问题是元素 ID 在 HTML DOM 中相互冲突。因此,唯一可寻址的元素是 svg 对象中最先出现在 HTML 文档中的元素。

我的问题是:

我是否需要为 svg 对象的每个实例设置唯一的元素 ID?或者有没有办法在 HTML DOM 中为 svg 对象设置范围和上下文?

例子:

每个包含的 div 都有一个唯一的 ID,我用它来插入 svg 文档和检索 SVG 文档。

    <div id="svgMap_div_1" class="cIG" style="height: 500px; width: 750px"></div>

用于加载从 ajax (mimeType = "image/svg+xml") 接收的 svg 文档的代码:

    document.getElementById('svgMap_div_1').appendChild(svgXMLObject.documentElement)

用于检索 svg 文档的代码。svgDoc 的声明对于实现它的函数是本地的并且是唯一的。

    var svgDoc = document.getElementById('svgMap_div_1').ownerDocument;

用于更新各个元素的代码。当相同的 svg 对象(子元素具有相同的 ID)在同一个 HTML DOM 中时,即使从离散的 div 中检索到,此 javascript 也将始终处理 HTML DOM 中首先出现的 svg 对象,例如 id=' svgMap_div_2'。

    var svgElem = svgDoc.getElementById('elemID');
    svgElem.setAttribute("fill", '#0000FF');

我相信问题的根源是使用 ownerDocument 检索 svgDoc。它不是创建具有范围和上下文的离散对象,而是贯穿整个 DOM,使 DOM 成为上下文。请参阅 IDE 中的代码参考:

HTMLDocument Node.ownerDocument

    Property ownerDocument http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html 
    See Also:
    Document
    Since:
    Standard ECMA-262 3rd. Edition
    Level 2 Document Object Model Core Definition.
    @type
    Document

如果必须,我可以开发一种有效的算法来使所有的 id 都是唯一的,但我肯定想找到更好的方法。我已经尝试了其他方法和属性来获得一个有效的 svg 文档对象,但这些方法和属性都不适合我。

下面是一个工作示例,演示当两个 svg 对象位于同一页面上的不同 div 时会发生什么。所有四种组合都会改变第一个矩形的颜色。如果您将第二个对象中矩形的 ID 更改为“box-b”并相应地对其进行寻址(“bbox_div”、“box-b”),则两个矩形彼此独立操作。

<script type='text/javascript'>
function colorBox(divID, svgElem, colorHex) {
    /* DOM  This is the original solution that did not work !!!*/
    //    var svgDoc = document.getElementById(divID).ownerDocument.
    //    var svgBox = svgDoc.getElementById(svgElem);
    //    svgBox.setAttribute("fill", colorHex);

    /* querySelector */
    //    document.querySelector("#"+divID + " ."+svgElem).setAttribute("fill", colorHex);

    /* jquery div */
    //    var svgBox = $('#'+divID+' svg').find('#'+svgElem);
    //    svgBox.css("fill", colorHex);    

    /* jquery class */
    $('#'+divID+' svg').find('.'+svgElem).css("fill", colorHex);
}
</script>
<div style="height: 100px; width: 100px">
    <a href="#" onclick="colorBox('abox_div', 'box-a', '#FF0000');return false;">Box A Red</a><br>
    <a href="#" onclick="colorBox('abox_div', 'box-a', '#0000FF');return false;">Box A Blue</a><br>
    <a href="#" onclick="colorBox('bbox_div', 'box-a', '#FF0000');return false;">Box B Red</a><br>
    <a href="#" onclick="colorBox('bbox_div', 'box-a', '#0000FF');return false;">Box B Blue</a><br -->
</div>
<div id="abox_div" style="height: 100px; width: 100px">
    <svg xmlns="http://www.w3.org/2000/svg"
         width="0.990919in"
         height="0.597218in" 
         viewBox="0 0 71.3461 42.9997">

    <style type="text/css">
    <![CDATA[
        .allboxes {fill:#00FF00}
    ]]>
    </style>

    <g class="box-a allboxes" transform="translate(0.24,-0.24)"  fill="#e8eef7">
        <rect x="0" y="0.48" width="70.8661" height="42.5197" ><title>Box A</title></rect>
    </g>
   </svg>
</div>
<div id="bbox_div" style="height: 100px; width: 100px">
   <svg xmlns="http://www.w3.org/2000/svg"
        width="0.990919in"
        height="0.597218in" 
        viewBox="0 0 71.3461 42.9997">
    <g class="box-a allboxes" transform="translate(0.24,-0.24)"  fill="#e8eef7">
        <rect x="0" y="0.48" width="70.8661" height="42.5197" ><title>Box B</title></rect>
    </g>
   </svg>
</div>
4

2 回答 2

3

如果您有重复的 ID,我相信严格来说它是无效的 HTML。我建议使用其他一些识别元素的机制,或者使用类而不是 ID 或data-属性。然后你可以移动.getElemntById()到任何一个.querySelector()试试 JS Bin):

<html>
<head>
<title></title>
</head>
<body>
  <div id="div1">
    <svg xmlns="http://www.w3.org/2000/svg" width="50px" height="50px">
      <rect class="rect1" width="50px" height="50px"/>
    </svg>
  </div>
  <div id="div2">
    <svg xmlns="http://www.w3.org/2000/svg" width="50px" height="50px">
      <rect class="rect1" width="50px" height="50px"/>
    </svg>
  </div>
  <script type="text/javascript">
    document.querySelector("#div1 .rect1").setAttribute("fill","red");
    document.querySelector("#div2 .rect1").setAttribute("fill","green");
  </script>
</body>
</html>

.getElementsByClassName()试试 JS Bin):

<html>
  <head>
    <title></title>
  </head>
  <body>
    <div id="div1">
      <svg xmlns="http://www.w3.org/2000/svg" width="50px" height="50px">
        <rect class="rect1" width="50px" height="50px"/>
      </svg>
    </div>
    <div id="div2">
      <svg xmlns="http://www.w3.org/2000/svg" width="50px" height="50px">
        <rect class="rect1" width="50px" height="50px"/>
      </svg>
    </div>
    <script type="text/javascript">
      document.getElementById("div1").getElementsByClassName("rect1")[0].setAttribute("fill","red");
      document.getElementById("div2").getElementsByClassName("rect1")[0].setAttribute("fill","green");
    </script>
  </body>
</html>

如果您将 ID 属性保持原样,可能.querySelector()也会起作用,例如:

document.querySelector("#div1 [id=rect1]")

但我仍然建议使用data-属性,因为这样可以避免任何潜在的 ID 陷阱。

于 2013-09-06T05:59:43.670 回答
2

由于您已经在使用 jQuery,您可以使用 jQuery 的选择器,它不关心重复的 id。

function colorBox(divID, svgElem, colorHex) {
  var svgBox = $('#'+divID+' svg').find('#'+svgElem);
  svgBox.css("fill", colorHex);
}

在这里演示:http: //jsfiddle.net/w9KA3/1/

于 2013-09-06T06:10:42.527 回答