今天加载ActiveX控件的时候出现一个问题,加载控件的页面为index.html, 如下:<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META HTTP-EQUIV="pragma" CONTENT="no-cache"> 
<META HTTP-EQUIV="Cache-Control" CONTENT="no-store, must-revalidate"> 
<script type="text/javascript">
function init() {
                     var ocxObject = document.getElementById("ocxObj");
                     //调用控件的方法
                     ocxObject .initMethod();
}
</script>
    </head>
    <body onload="init();">
        <div id='kongjian'>
<object id="ocxObj" style="width:800px; height:600px" 
                          classid="clsid:455FA7A9-756E-4767-8A0A-40DDECD23659">
</object>
</div>
    </body>
</html>我用右键打开方式中用IE浏览器打开是可以初始化ActiveX控件并执行控件的initMethod()方法的,
但是我用window.open("index.html")打开时候,为什么初始化不了ActiveX控件呢?initMethod()
方法也执行不了,希望高手指教啊,先谢谢啦!