如果网页显示在叠加层中,如何从叠加层获取网址

时间:2011-07-27 22:15:12

标签: javascript jquery overlay

我有一个搜索页面。现在我想在用户点击某个链接时打开搜索页面。现在我做一些查询搜索,选择一些过滤器,以便我继续将新的参数添加到网址。

例如,当我在谷歌搜索中搜索“俱乐部”查询时,我会看到以下网址。

     http://www.google.com/#sclient=psy&hl=en&source=hp&q=club&pbx=1&oq=club&aq=f&aqi=g5&aql=&gs_sm=e&gs_upl=257848l258668l2l259633l5l4l0l0l0l3l462l1655l3-1.3l4&bav=on.2,or.r_gc.r_pw.&fp=aeb16183bfd07c66&biw=1280&bih=628

现在我过滤我的搜索并从左侧选项中选择图像过滤器,我的网址如下所示

    http://www.google.com/search?q=club&hl=en&biw=1280&bih=628&prmd=ivnsm&source=lnms&tbm=isch&ei=_4wwTsvfNdDQsgac0cz0Dw&sa=X&oi=mode_link&ct=mode&cd=2&ved=0CBAQ_AUoAQ

现在我想将搜索页面放在叠加层中。然后当用户完成所有搜索后,他可以点击叠加层右下角的“确定”按钮。因此,当用户点击“确定”时,我想要在标签窗口中正常打开搜索页面时生成的URL,如上面针对谷歌案例所示的那样。

1 个答案:

答案 0 :(得分:-1)

可以使用JavaScript,css和iframe完成单独网站的叠加层(或您提供的示例中的模式叠加层)。

如果您对使用现有库感兴趣,jQuery ui有一个非常好的叠加,他们称之为对话框。 http://jqueryui.com/demos/dialog/

如果您不想使用库,则必须执行与以下代码类似的操作。注意:此代码非常基本,并且不使用处理叠加层的库提供许多可用功能。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
    <script language="javascript" type="text/javascript">

    //Define a class to create and control the overlay
    function overlay(width, height) {

        var container, iframe;

        this.setLocation = function(url) {
            iframe.setAttribute('src', url);
        }

        this.getLocation = function(url) {
            return iframe.getAttribute('src');
        }

        this.show = function() {
            container.style.display = 'block';
        }

        this.hide = function() {
            container.style.display = 'none';
        }

        function windowSize() {
            var winW = 630, winH = 460;
            if (document.body && document.body.offsetWidth) {
                winW = document.body.offsetWidth;
                winH = document.body.offsetHeight;
            }
            if (document.compatMode=='CSS1Compat' && document.documentElement && document.documentElement.offsetWidth ) {
                winW = document.documentElement.offsetWidth;
                winH = document.documentElement.offsetHeight;
            }
            if (window.innerWidth && window.innerHeight) {
                winW = window.innerWidth;
                winH = window.innerHeight;
            }
            return [ winW, winH ];
        };

        (function() {
            //create the containing element
            container = document.createElement('div');
            container.style.position = 'fixed';
            container.style.top = '0px';
            container.style.left = '0px';
            container.style.right = '0px';
            container.style.bottom = '0px';
            container.style.zIndex = 1000;
            container.style.backgroundColor = 'rgba(0, 0, 0, .5)';

            //create the iframe
            iframe = document.createElement('iframe');
            iframe.setAttribute('frameborder', 0);
            iframe.style.position = 'absolute';
            iframe.style.width = width + 'px';
            iframe.style.height = height + 'px';
            iframe.style.left = ((windowSize()[0] - width) / 2) + 'px';
            iframe.style.top = ((windowSize()[1] - height) / 2) + 'px';

            container.appendChild(iframe);
            document.body.appendChild(container);
        })(this)

    }

    //create an overlay object, set it's location, and show it
    var win = new overlay(700, 400);
    win.setLocation('http://www.google.com/');
    win.show();

    </script>
</body>
</html>