我刚刚构建了一张新西兰的 SVG 地图,用于与优秀的 javascript 库Raphael一起使用,但不幸的是,我偶然发现了我只能想象的 IE 的 javascript 解释器中的错误或语法变化。
在 Firefox 和其他浏览器中,onlick 和 onmouseover 事件可以完美运行 - 但是它们不会在 IE 中触发(在 IE 7 中测试)。不幸的是,没有 javascript 错误可以帮助我调试它,所以我只能假设 IE 以某种根本不同的方式处理这些事件。
<script type="text/javascript" charset="utf-8">
window.onload = function() {
var R = Raphael("paper", 450, 600);
var attr = {
fill: "#3f3f40",
stroke: "#666",
"stroke-width": 1,
"stroke-linejoin": "round"
};
var nz = {};
nz.northland = R.path(attr, "M 193.34222,3.7847503 C 194.65463");
// SVG data stripped for sake of brevity
var current = null;
for (var region in nz) {
nz[region].color = Raphael.getColor();
(function(rg, region) {
rg[0].style.cursor = "pointer";
rg[0].onmouseover = function() {
current && nz[current].animate({ fill: "#3f3f40", stroke: "#666" }, 500) && (document.getElementById(current).style.display = "");
rg.animate({ fill: rg.color, stroke: "#ccc" }, 500);
rg.toFront();
R.safari();
document.getElementById(region).style.display = "block";
current = region;
};
rg[0].onclick = function() {
alert("IE never gets this far.");
//window.location.href = "my-page.aspx?District=" + region;
};
rg[0].onmouseout = function() {
rg.animate({ fill: "#3f3f40", stroke: "#666" }, 500);
};
if (region == "northland") {
rg[0].onmouseover();
}
})(nz[region], region);
}
};
</script>
非常感谢 :)