0

我有一个页面,有一个按钮,它显示 iframe 在哪里是带有可点击行的小列表,如下所示:

<tr onclick="location.href = '@(Url.Action("Show", "Messages", new { id = item.FriendID }))'">

所以我的问题是当用户点击 tr 重定向工作但在 i 框架上我想重定向我的父页面。

4

1 回答 1

1

使用 top.href 或 parent.href 代替 location.href

<tr onclick="top.href = '@(Url.Action("Show", "Messages", new { id = item.FriendID }))'">
于 2012-05-13T15:23:10.870 回答