引用:
b.htm
--------------------------------------
This is b.htm
<script>
top.location.href('c.htm');
</script>
--------------------------------------
請注意 href 不是一個 location 的 function,它是 location 的 property,正確的用法是:
top.location.href="c.htm";
估計你看的是 Micro$oft 的書吧,那些書真是誤人子弟
