location.href

来源:百度知道 编辑:UC知道 时间:2024/05/27 04:09:50
c.htm主题内容如下:
<iframe src="a.htm"></iframe>
<iframe name="bb"></iframe>

a.htm主题内容:
<a href="b.htm" target=bb>

以上外码没有问题,可以实现我要的基本效果.现在需要把<a> 换成onclick="location.href='b.htm'",target怎么加???
不要<a>,因为我现在不是在文字是做链接,而是在表格<tr> 里做链接
楼下的方法不管用

<iframe src="a.htm"></iframe>
<iframe name="bb"></iframe>

<table>
<tr onclick="document.frames['bb'].location.reload('b.htm');"><td>test</td></tr>
</table>

在我这都管用,在你那怎么就不管用了呢,如果还是不行,没招了。