这是一个非常简单的VML示例,可以在所有版本的IE上正常显示。它还可以在除IE8之外的所有IE版本上打印。我知道有可能使IE8打印VML,但无法找到我应该怎么做。谢谢你的提示。
<script type="text/javascript">
window.onload = function ()
{
document.createStyleSheet().cssText = 'v\\:oval { behavior:url(#default#VML); display: inline-block}';
document.namespaces.add('v', 'urn:schemas-microsoft-com:vml');
var node = document.createElement("<v:oval>");
node.style.width = "100px";
node.style.height = "100px";
document.getElementById("mydiv").appendChild(node);
}
</script>
<div id="mydiv" style="background-color:#eeeeee; width: 800px; height: 620px;">
答案 0 :(得分:0)
您必须将第三个参数添加到document.namespaces.add:
document.namespaces.add('v', 'urn:schemas-microsoft-com:vml', '#default#VML');