使用户能够在新窗口中返回上一页

时间:2014-11-14 18:56:57

标签: javascript php html

我有PHP表单,用户可以在文本框中插入电影名称,然后通过单击“搜索”按钮,打开一个新窗口,显示电影列表包含用户在文本框中插入的单词。

例如,下图显示的电影列表中包含单词“froz”:

enter image description here

现在,如果用户点击新窗口中的任何电影名称(例如“冻结”),将显示此页面:

enter image description here

从图像中可以看出,窗口在浏览器中没有后面。我的问题是如何让用户返回上一页(显示电影列表的页面)?

当用户点击“搜索”按钮打开一个新窗口(显示电影列表)时,这是代码:

$('#btnSearch').on('click', function (e) {           
           window.textbox = $('#q').val();
           window.searchType = $('input:radio[name=source]:checked').val();

           popupCenter("movielist.php","_blank","400","400");
  });

这是我在用户点击电影名称时定义网址的代码。

 <td><a href="http://www.imdb.com/title/<?php echo urlencode($row['ImdbId']); ?>"><?php echo $row['movieName']; ?></a></td>

所有想法都受到高度赞赏,

1 个答案:

答案 0 :(得分:1)

当您打开一个新的弹出窗口时,使用toolbar = yes,menubar = yes等选项。

相关问题:Show Back/Forward