index.htm必须能够访问到image.htm,比如在同一个框架集或者index.htm使用弹出窗口打开image.htm
--------------------------------image.htm
-----------
<script>
var a = new Array("1","2")
function returnIndexA(){
return a
}
</script>index.htm
-----------
<SCRIPT>
function getIndexA() {
try{
alert(image.returnIndexA())
}
catch(e)
{
alert('image.htm未打开')
}
}
</SCRIPT>
<A HREF="javascript:getIndexA()">Click here</A>
<A HREF="javascript:var image = window.open('image.htm');">Click here</A>