我使用下面的代码,然后保存为.hta文件,打开倒是可以正常现实页面,但是页面里的链接什么的都无效...
localhost页面是一个框架
框架里的连接我是用
window.parent.frames.mainFram.location.href
提示的错误为“‘window.parent.frames.mainFram.location’为空或不是对象”
<html>
<head>
  <meta http-equiv="Refresh" content="0;url=http://localhost/">
</head>
<body>
</body>
</html>还有
我把代码改成这样
<html>
<head>
  <meta http-equiv="Refresh" content="0;url=http://www.163.com/">
</head>
<body>
</body>
</html>
这样浏览163网站,但是点击里面的链接却是在maxthon2中打开,但是打开的是空白页,这是怎么回事呢?