62,240
社区成员




<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<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 = "640";
embedTag.height = "480";
embedTag.onload = function() {
alert(embedTag.getSVGDocument());
};
embedTag.src = "test.svg";
document.body.appendChild(embedTag);
}
</script>
</head>
<body onload="load();">
</body>
</html>
<?xml version="1.0" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="640" height="480" onload="init(evt);">
<script type="text/javascript">
<![CDATA[
function init() {
alert(1);
}
]]>
</script>
<line x1="20" y1="20" x2="70" y2="20" style="stroke:black"/>
</svg>