如何在magnificpopup窗口中为<span>分配值?

时间:2017-07-20 08:16:01

标签: magnific-popup

我可以访问magnificPopup中包含的span的当前.html()值。 但我不能设定这个值。 这就是我的意思:

            parseAjax: function(mfpResponse) {
                // This works perfectly
                var mycontent = $(mfpResponse.data).find('#textreported').html();
                // But this does not work
                $(mfpResponse.data).find('#textreported').html('Text to be assigned');
            }

有谁知道我做错了什么? 提前谢谢。

1 个答案:

答案 0 :(得分:0)

我会自己回答。这是正确的方法:

            parseAjax: function (mfpResponse) {
                str = jQuery.parseHTML(mfpResponse.data)
                $(str).find('#textreported').html('Text to be assigned');
                mfpResponse.data = $(str)
            }

对某人可能有用。