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