首页 热点资讯 义务教育 高等教育 出国留学 考研考公

用js怎么获取svg图元素和元素的文本值

发布网友 发布时间:2022-04-25 04:57

我来回答

1个回答

热心网友 时间:2022-04-20 07:43

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-31j">
<title>Insert title here</title>
<script type="text/javascript">
function load() {
var embedTag = document.createElement('embed');
embedTag.type = "image/svg+xml";
embedTag.width = "0";
embedTag.height = "480";
embedTag.onload = function() {
alert(embedTag.getSVGDocument());
};
embedTag.src = "test.svg";
document.body.appendChild(embedTag);
}
</script>
</head>
<body onload="load();">
</body>
</html>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com