假设我创建了两个 Raphael 元素并附加到 DOM 中的单个 div 元素。例如:http: //jsfiddle.net/sreedharmb/ApnwB/2/
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>append demo</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
</head>
<body>
<div id="sample-1"></div>
<script>
var paper = Raphael("sample-1", 200, 75);
var paper1 = Raphael("sample-1", 200, 75);
var rect = paper.rect(10, 10, 50, 50);
var rect1 = paper1.rect(10, 10, 50, 50);
rect.attr({fill: "green"});
rect1.attr({fill: "red"});
</script>
</body>
</html>
在这个例子中,我希望在红色之前绘制绿色矩形。但结果似乎有所不同。这种行为的原因是什么?
我检查了 chrome 中的输出 html,令我惊讶的是红色矩形的 SVG 元素在绿色矩形上方。
<body>
<div id="sample-1">
<svg height="75" version="1.1" width="200" xmlns="http://www.w3.org/2000/svg" style="overflow: hidden; position: relative;"><desc style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);">Created with Raphaël 2.1.0</desc><defs style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></defs><rect x="10" y="10" width="50" height="50" r="0" rx="0" ry="0" fill="#ff0000" stroke="#000" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></rect></svg>
<svg height="75" version="1.1" width="200" xmlns="http://www.w3.org/2000/svg" style="overflow: hidden; position: relative;"><desc style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);">Created with Raphaël 2.1.0</desc><defs style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></defs><rect x="10" y="10" width="50" height="50" r="0" rx="0" ry="0" fill="#008000" stroke="#000" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></rect></svg>
</div>
<script>
var paper = Raphael("sample-1", 200, 75);
var paper1 = Raphael("sample-1", 200, 75);
var rect = paper.rect(10, 10, 50, 50);
var rect1 = paper1.rect(10, 10, 50, 50);
rect.attr({fill: "green"});
rect1.attr({fill: "red"});
</script>
</body>
有没有办法对 RaphaelJS 创建的 SVG 进行重新排序,或者有没有办法在将 SVG 添加到 div 时控制 RaphaelJS 的行为。