gpt4 book ai didi

javascript - 为什么 SVG 的 getElementById 失败?

转载 作者:行者123 更新时间:2023-12-04 01:37:27 25 4
gpt4 key购买 nike

我正在尝试调试原因

var mapWin = svgMapDoc.getElementById('Map');

叶子 mapWin仍然null .我已经设置了一个断点和一个监视,并且在我的 IDE 监 window 口中出现以下令人困惑的情况:

name: svgMapDoc.getElementById('MainSVG') value: null
neame: svgMapDoc.childNodes[2].attributes["id"].nodeValue value: "MainSVG"

(注意 'MainSVG' 是 'Map' 的父级。)

因此带有 id 的元素“MainSVG”在“svgMapDoc”中,它是第三个子节点,但是getElementById无法返回它。为什么?我该如何解决?

=========== 编辑 ===========

评论者要求提供 HTML。这很棘手,因为它非常复杂,但这里有一些片段。

它最初不是我的代码,而是来自英国国家统计局。他们提供对英国 2011 年全国人口普查数据的访问。他们提供的一种访问方法是通过 SOAP API,他们在页面 NeSS Data Exchange V2.0 上提供了如何使用他们的 API 的示例。 .我无法让一个示例正常工作。在 NDE v2.0 Excel Client 下在 ZIP 中 NDE Hub Client REST v2.0 (Zip) 37 Mb ,一个“基于 Excel 的集线器演示应用程序,允许用户建立保存数据的存储库,并通过 SVG 专题 map 查看它”。请注意,我有 made some changes to their sample .

map <DIV> SVG 数据通过以下几行添加到页面:

document.writeln('<DIV id=mapPanel style="position:absolute;left:26%;top:7%; height=63%; width=50%;">');
document.writeln('<EMBED height=100% width=100% name=svgMap onload="svgMapLoaded()" src="../Boundaries/' + svgFile + '" type=image/svg+xml>');
document.writeln('</DIV>');

svgFile变量设置为“la_12UB.svg”并且该文件存在于“边界”目录中。这是“Boundaries/la_12UB.svg”的启动方式。

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/css" href="external.css" ?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd">
<svg xml:space="preserve" preserveAspectRatio="xMinYMin meet" id="MainSVG" width="395" height="420" viewBox="0 0 900 650">
<g class="mapEdge" opacity="0.2">
<rect x="0" y="0" width="100%" height="100%"/>
</g>
<svg xml:space="preserve" preserveAspectRatio="xMinYMin meet" id="Map" onload="init(evt)" width="100%" height="100%" viewBox="541512 -262080 7829 10000">
<g class="mapBackground" transform="translate(1000,500) scale(1, -1)">
<path id="00JA" d="M 533246,308907 534698,301468 539690,302984 540167,303513 539729,302866 534716,301443 527492,299370 527194,299301 522976,298284 523340,298070 522788,297938 522896,297322 522287,296297 522752,296256 523134,295665 522992,295319 522142,295666 521979,295371 521209,295267 520981,294831 520598,295324 519801,295441 519692,294834 520037,294424 519608,293815 519307,293871 519182,293126 517207,292629 517375,292088 516523,291182 516301,291471 515933,291255 515710,292076 514043,294384 513155,295603 513611,295848 513756,296170 513511,296320 512826,296386 512500,296931 512035,297564 510765,297353 510349,297748 509529,297818 509347,298690 508718,299559 507903,299503 507472,299058 506810,299452 503855,298555 503186,298398 503176,298820 502294,299230 501879,299841 502341,300260 502671,301563 502968,301637 503035,302936 503435,302942 503614,303338 503418,304478 502550,305148 502370,304967 501950,305791 502644,306453 503260,306347 503212,306752 503764,306896 504753,306844 504914,307391 507122,306620 507966,306784 508919,307439 510829,308187 511058,308184 512364,308996 512669,309872 514367,309757 516476,308975 517551,307531 517895,307411 520168,309004 520976,309160 521409,309326 522343,307609 523190,308534 525850,307595 525946,307970 528419,309965 529405,309387 530284,310000 530904,310008 531006,310370 531399,310254 532300,309733 533178,309331 533246,308907 z"/>

将 SVG 从 DOM 放入“mapWin”的 JavaScript 代码是

function svgMapLoaded() {
if (document.svgMap && document.svgMap.contentDocument) {
svgMapDoc = document.svgMap.contentDocument;
} else try {
svgMapDoc = document.svgMap.getSVGDocument();
}
catch (exception) {
alert('Neither the HTMLObjectElement nor the GetSVGDocument interface are implemented');
}
initialiseIfReady();
}

最后我遇到问题的代码是

function initialise() {
var mapWin = svgMapDoc.getElementById('Map');
fullExtent[0] = mapWin.getAttribute('viewBox').split(" ")[0];

最佳答案

如果您没有正确命名 SVG 文件,ID 通常无法按预期工作。

因此,解决方案是添加一个 xmlns="http://www.w3.org/2000/svg"属性到根 <svg>元素连同任何其他 namespace 声明(例如 xlink)是必需的。

关于javascript - 为什么 SVG 的 getElementById 失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16566377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com