<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>new document </title>
<script type="text/javascript">
function init() {
var svg_obj = document.getElementById("svg_obj")
svg_obj.onclick = function(event) {
var xmlns = "http://www.w3.org/2000/svg"
var tsvg_obj = document.getElementById("svg_obj")
var svg_img = document.createElementNS(xmlns, "image")
svg_img.href.baseVal = "example.jpg"
svg_img.setAttributeNS(null, "x", event.pageX)
svg_img.setAttributeNS(null, "y", event.pageY)
svg_img.setAttributeNS(null, "height", "16px")
svg_img.setAttributeNS(null, "width", "16px")
tsvg_obj.appendChild(svg_img)
}
}
</script>
</head>
<body onload="init()">
<svg id="svg_obj" version="1.1"
xmlns="http://www.w3.org/2000/svg" style="width:220pxheight:220pxborder:1px solid black"></svg>
</body>
</html>
createElementNS() 方法与 createElement() 方法相似,只是它创建的 Element 节点除了具有指定的名称外,还具有指定的命名空间。只有使用命名空间的 XML 文档才会使用该方法欢迎分享,转载请注明来源:内存溢出
评论列表(0条)