0

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

1 回答 1

0

您必须将第三个参数添加到 document.namespaces.add:

 document.namespaces.add('v', 'urn:schemas-microsoft-com:vml', '#default#VML');
于 2012-10-18T08:43:39.727 回答