Photoswipe:使用photoswipe在iframe中触发事件

时间:2013-05-13 13:32:49

标签: jquery events iframe photoswipe

在一个网站上,我有一个iframe,其中包含一个启动时全屏的photoswipe应用程序。现在,应该从iframe外部控制photoswipe幻灯片。 我在主站点中有这段代码:

<iframe src="test.html" id="iframe" width="1440" height="1080" name="iframe" scrolling="no" frameBorder="0" ></iframe>
<div id="ruck" ><a href="#" onClick="document.getElementById('iframe').contentWindow.previous();"><img src="img/rueck.png" /></a></div>
<div id="vor" ><a href="#" onClick="document.getElementById('iframe').contentWindow.next();"><img src="img/vor.png" /></a></div>

和iframe中的代码:

<html>
<head>
    <link href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" rel="stylesheet" />
    <link href="photoswipe.css" type="text/css" rel="stylesheet" />
    <script type="text/javascript" src="klass.min.js"></script>
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
    <script type="text/javascript" src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
    <script type="text/javascript" src="code.photoswipe.jquery-3.0.4.min.js"></script>
    <script type="text/javascript">
        (function(window, $, PhotoSwipe)
        {
            $(document).ready(function()
            {
                 var myPhotoSwipe = $("#gallery a").photoSwipe(
                {
                    enableMouseWheel: false,
                    enableKeyboard: false,
                    captionAndToolbarHide: false
                });

                $("#gallery a:first").click();
            });
        }
        (window, window.jQuery, window.Code.PhotoSwipe));

function previous()
{
myPhotoSwipe.previous(); 
}

function next()
{
myPhotoSwipe.next(); 
}       
</script>
</head>
<body>
<div id="gallery">      
            <a href="demo/image001.jpg" rel="external"></a>
            <a href="demo/image002.jpg" rel="external"></a>
            <a href="demo/image003.jpg" rel="external"></a> 
        </div>
</body>
</html>

在这里,点击下一个前一个按钮时出错: ReferenceError:未定义myPhotoSwipe myPhotoSwipe.next();

如您所见,事件正在触发,但函数myPhotoSwipe.next()未定义。 任何想法,为正在运行的代码改变什么?

提前感谢。

1 个答案:

答案 0 :(得分:0)

我会说你有一个范围问题:

var myPhotoSwipe; //set here to reference it on global scope
(function(window, $, PhotoSwipe)
        {
            $(document).ready(function()
            {
                 myPhotoSwipe = $("#gallery a").photoSwipe(
                {
                    enableMouseWheel: false,
                    enableKeyboard: false,
                    captionAndToolbarHide: false
                });

                $("#gallery a:first").click();
            });
        }
        (window, window.jQuery, window.Code.PhotoSwipe));