在JavaScript定義的對象中,不管是內部對象,還是使用者自定的對象。如果該對象是從模態視窗(Modal Dialog)中建立並返回到主視窗中的,我們將無法在主視窗中取到該對象的建構函式(constructor)。
執行如下兩個樣本:
1、Main.htm
<html>
<head>
<title>Main Page</title>
<meta name="author" content="birdshome@部落格園" />
</head>
<body>
<button onclick="GetValueFromDialog()">
click</button>
<script>
var m_Array = [];
function GetValueFromDialog()
{
var array = window.showModalDialog('dialog.htm');
alert(array.constructor);
// alert(new m_Array.constructor);
// alert(new array.constructor);
}
</script>
</body>
</html>
2、Dialog.htm
<html>
<head>
<title>Modal Dialog</title>
<meta name="author" content="birdshome@部落格園" />
</head>
<body>
<script>
function ReturnValue()
{
window.returnValue = ['modal dialog'];
// window.returnValue = new function foo(){};
window.close();
}
</script>
<button onclick="ReturnValue()">close</button>
</body>
</html>
關閉快顯視窗dialog.htm,執行alert(array.constructor);將會引髮腳本運行時異常:
A Runtime Error has occurred.
Do you wish to Debug?
Line: 12
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方法等,在這中情況下就都歇菜了。