11

在 Magnific Popup 中,我想在单击的链接中获取一个属性,并在回调函数中使用它(使用回调:打开)以在 DOM 中进行一些更改。

我怎样才能做到这一点?例如,在下面的代码中,它应该向控制台返回“it works”。相反,它会打印“不起作用”。请帮忙!!

<a href="#test-popup" class="open-popup-link" myatt="hello">Show inline popup</a>

<script src="jquery.magnetic.custom.js"></script>

<script>

    $(document).ready(function() {
      $('.open-popup-link').magnificPopup({
        type:'inline',
        midClick: true,
        callbacks: {
          open: function() {

            if ($(this).attr('myatt')=="hello") 
            { 
              // do something 
              console.log("it works");
            }
            else
            {
              console.log("doesnt work");
            }

          },
          close: function() {

          }
        }

      });
    });

</script>

<div id="test-popup" class="white-popup mfp-hide">
  Popup content
</div>
4

6 回答 6

14

对于 Magnific Popup v0.9.8

var magnificPopup = $.magnificPopup.instance,
              cur = magnificPopup.st.el;
console.log(cur.attr('myatt'));
于 2013-11-06T20:06:19.167 回答
6

首先,我建议您使用数据属性( data-custom="foo" )或已知属性。

HTML:

  <a href="photo.jpg" class="popup" data-custom="dsaad">Do it!</a>
  <a href="photo.png" class="popup" data-custom="mycustomdata">Do it!</a>

jQuery :

$('.popup').magnificPopup({
  type : 'image',
  callbacks : {
    open : function(){
      var mp = $.magnificPopup.instance,
          t = $(mp.currItem.el[0]);

      console.log( t.data('custom') );
    }
  }
});

我不知道是否存在更好的方法。实际上你可以阅读他们关于公共方法的文档,你会在那里看到。我测试了上面的代码,一切正常:)

于 2013-06-02T19:33:12.390 回答
5

对于 0.9.9 版:

this.currItem.el

于 2014-02-28T10:42:03.517 回答
0

此外, inside open: function(item) {}this.content可能会有所帮助..它将返回正在显示的内容的 div 。也很有用change: function () {}。希望它可以帮助像我这样的人。

于 2014-02-20T03:02:36.183 回答
0

可以使用以下回调在回调中访问单击的元素:

this.st.el

在回调内部,“this”指的是 $.magnificPopup.instance。

在公共属性下:

“magnificPopup.st.el // 目标单击的打开弹出窗口的元素(如果弹出窗口是从 DOM 元素初始化的,则有效)”

于 2013-12-22T06:43:04.753 回答
0
// "item.el" is a target DOM element (if present)
// "item.src" is a source that you may modify
open: function(item) {}

并使用数据属性,例如 data-myatt - 得到:

$(this).data('myatt')
于 2013-06-02T18:25:54.167 回答