这是一个非常简单的 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;">