如何在infinitescroll结束时删除弹出窗口。在哪里说祝贺。 我尝试将消息设置为空“”但这并不能阻止黑色弹出窗口出现。
loading: {
finishedMsg: ""
},
答案 0 :(得分: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
。
答案 1 :(得分:0)
多年以后,一位软件工程师将在地下室的几层灰尘和碎屑中发现这个问题。所以......尽管有作者,但这个插件的文档并不是很好。这并不明显,但如果您想要删除带有消息的弹出窗口,只需将finishedMsg
对象中的options
变量设置为空字符串:
jQuery('#main').infinitescroll({
loading: {
finishedMsg: ""
}
}, function() {});
......瞧!该插件根本不会显示弹出窗口。