我有一个简单的 svg 示例,它只包装了一个 jpg。这是HTML:
<html>
<head>
</head>
<body>
<div id="theimageholder">
<img id="theimage" src="Images/simplepng.svg"></img>
</div>
</body>
</html>
这是 simplepng.svg 的 SVG:
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
width="410" height="340"
viewBox="0 0 200 200"
zoomAndPan="enable"
preserveAspectRatio="xMidYMin meet" >
<image x="0" y="0" width="200px" height="200px" xlink:href="earth.jpg"/>
</svg>
这适用于 IE9,但不适用于 Chrome 或 Firefox。他们都没有显示任何内容。xlink:href 在那些浏览器中工作吗?