我有页面有按钮,显示iframe在哪里是可点击行的小列表,如下所示:
<tr onclick="location.href = '@(Url.Action("Show", "Messages", new { id = item.FriendID }))'">
所以我的问题是当用户点击tr Redirect正在工作但在i帧上我想重定向我的父页面。
答案 0 :(得分:1)
使用top.href或parent.href
代替location.href<tr onclick="top.href = '@(Url.Action("Show", "Messages", new { id = item.FriendID }))'">