制作 Javascript“加载更多”没有JQuery的分页
我正在制作网站的移动版本,我想在底部添加一个“加载更多”按钮。我发现了很多方法可以做到这一点,但它们都需要 JQuery 或 MooTools。由于它是一个移动网站,我不想加载巨大的脚本。没有JQuery我该怎么做呢?
I'm making a mobile version of my website and I want to add a "Load more" button at the bottom. I found many ways to do this, but they all require JQuery or MooTools. Since it's a mobile site, I don't want to load a huge script. How can I do it without JQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以使用原始 JS 来完成此操作。例如,您可以使用 XMLHTTPRequest(),而不是使用 $.ajax()。
jQuery 还有一个您可能感兴趣的移动版本。链接
You can always do it using raw JS. For example instead of using $.ajax() you could use XMLHTTPRequest().
jQuery also has a mobile version which you might be interested in. Link