1

如何在无限滚动结束时删除弹出窗口。那个是说祝贺的。我尝试将消息设置为空“”,但这并不能阻止黑色弹出窗口的出现。

    loading: {
        finishedMsg: ""
   },
4

2 回答 2

0

尝试这个:

donetext     : "I think we've hit the end, Jim" ,
             // text displayed when all items have been retrieved
             // default: "<em>Congratulations, you've reached the end of the internet.</em>"

无限滚动文档

默认情况下,他说你的congratulations.

于 2012-09-13T19:17:25.610 回答
0

多年后,一位软件工程师将在地下室的几层灰尘和碎屑下发现这个问题。所以......尽管作者如此,但该插件的文档并不是很好。这并不明显,但是如果您想删除带有消息的弹出窗口,只需将对象中的finishedMsg变量设置options为空字符串即可:

jQuery('#main').infinitescroll({
    loading: {
        finishedMsg: ""
    }
}, function() {});

……瞧!该插件根本不会显示弹出窗口。

于 2015-09-15T16:57:25.837 回答