gpt4 book ai didi

javascript - IE11 jQuery html() 在 SVG 元素内不起作用

转载 作者:行者123 更新时间:2023-12-03 12:30:12 24 4
gpt4 key购买 nike

适用于 Chrome 等。

屏幕截图应该说明情况。

SVG 的内容已在 DOM 中更改,但“DOM Explorer”报告原始矩形仍然存在(正在显示)。

有趣的是,OS X 上的 Safari 7 也表现出相同的行为。

enter image description here

最佳答案

我也遇到了同样的问题。

一个快速修复方法是使用 jQuery empty() 而不是 html('');

例如,

var svg = d3.selectAll("svg");
svg.each(function() {
// does not work in IE $(this).html('');
$(this).empty();
});

关于javascript - IE11 jQuery html() 在 SVG 元素内不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23966525/

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