我的文件 index.htm<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>有限公司</title>
<meta http-equiv="refresh" content="100;url=index.html">
</head><body>
<a href="javascript:WindowClose();">关闭当前窗口</a>
</body>
<script language="javascript">
function WindowClose(){
window.close();
}
</script>
</html>以上文件在以 http://***.***.***.***/index.htm 方式访问(***表示IP)就可以执行window.close();但以 http://www.***.com/index.htm 方式访问(***表示域名)就无法执行window.close();有什么解决之道,还望高手支招!