访问JavaScript对象的构造函数时失败

 在JavaScript定义的对象中,不管是内部对象,还是用户自定的对象。如果该对象是从模态窗口(Modal Dialog)中创建并返回到主窗口中的,我们将无法在主窗口中取到该对象的构造函数(constructor)。

    执行如下两个示例:
    1、Main.htm

访问JavaScript对象的构造函数时失败<html>
访问JavaScript对象的构造函数时失败<head>
访问JavaScript对象的构造函数时失败    <title>Main Page</title>
访问JavaScript对象的构造函数时失败    <meta name="author" content="birdshome@博客园" />
访问JavaScript对象的构造函数时失败</head>
访问JavaScript对象的构造函数时失败<body>
访问JavaScript对象的构造函数时失败    <button onclick="GetValueFromDialog()">
访问JavaScript对象的构造函数时失败        click</button>
访问JavaScript对象的构造函数时失败    <script>
访问JavaScript对象的构造函数时失败    
var m_Array = []; 
访问JavaScript对象的构造函数时失败    
function GetValueFromDialog()
访问JavaScript对象的构造函数时失败    
{
访问JavaScript对象的构造函数时失败         
var array = window.showModalDialog('dialog.htm');
访问JavaScript对象的构造函数时失败         alert(array.constructor);
访问JavaScript对象的构造函数时失败         
// alert(new m_Array.constructor);
访问JavaScript对象的构造函数时失败
         // alert(new array.constructor);
访问JavaScript对象的构造函数时失败
    }
访问JavaScript对象的构造函数时失败   
</script>
访问JavaScript对象的构造函数时失败</body>
访问JavaScript对象的构造函数时失败</html>
访问JavaScript对象的构造函数时失败

    2、Dialog.htm
访问JavaScript对象的构造函数时失败<html>
访问JavaScript对象的构造函数时失败<head>
访问JavaScript对象的构造函数时失败    <title>Modal Dialog</title>
访问JavaScript对象的构造函数时失败    <meta name="author" content="birdshome@博客园" /> 
访问JavaScript对象的构造函数时失败</head>
访问JavaScript对象的构造函数时失败<body>
访问JavaScript对象的构造函数时失败    <script>
访问JavaScript对象的构造函数时失败    
function ReturnValue()
访问JavaScript对象的构造函数时失败    
{
访问JavaScript对象的构造函数时失败         window.returnValue 
= ['modal dialog'];
访问JavaScript对象的构造函数时失败         
// window.returnValue = new function foo(){}; 
访问JavaScript对象的构造函数时失败
         window.close();
访问JavaScript对象的构造函数时失败    }
   
访问JavaScript对象的构造函数时失败    
</script>
访问JavaScript对象的构造函数时失败   <button onclick="ReturnValue()">close</button> 
访问JavaScript对象的构造函数时失败</body>
访问JavaScript对象的构造函数时失败</html>
访问JavaScript对象的构造函数时失败

    关闭弹出窗口dialog.htm,执行alert(array.constructor);将会引发脚本运行时异常:
访问JavaScript对象的构造函数时失败 A Runtime Error has occurred.
访问JavaScript对象的构造函数时失败 Do you wish to Debug?
访问JavaScript对象的构造函数时失败
访问JavaScript对象的构造函数时失败 Line: 12
访问JavaScript对象的构造函数时失败 Error: Unexpected call to method or property access.
    // Unable to evaluate the expression. Catastrophic failure

    不过在这里JavaScript的内部对象和用户自定义对象还有一点小区别,如果是JS内部对象,我们访问对象的构造函数就立即出错。alert(array.constructor)就异常了。而如果是用户指定一对象,我们可以执行alert(array.constructor)得到一个显示"[object]"的MsgBox,但是这时的contrutor仍然不支持任何的操作和执行任何方法,比如new、.toString()等,一旦执行就出和上面一样的异常"Unable to evaluate the expression. Catastrophic failure"。

    这个缺陷似乎对我们的影响不是很大,不过对于一些依赖于对象的constructor来实现的功能就郁闷了,比如获取用户自定义对象的名称JavaScript面向对象编程之Singleton类、以及我上次做的一个对象Clone方法等,在这中情况下就都歇菜了访问JavaScript对象的构造函数时失败


本文转自博客园鸟食轩的博客,原文链接:http://www.cnblogs.com/birdshome/,如需转载请自行联系原博主。

上一篇:阿里云扩建新加坡数据中心


下一篇:Linux 测试工具