在 Joomla 中添加无限向下滚动
如何在 Joomla 中集成 Infinity/Autopager Scroll 的 Jquery 代码。如果可能的话,滚动条可以处理所选文章。
How do I integrate Jquery code for Infinity/Autopager Scroll down in Joomla. And If possible the scroller to work on Chosen Articles.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想将 jQuery 添加到您的 joomla 制作的网站中,那么很容易加载 jquery 文件,例如:
joomla/templates/ rhuk_milkyway/index.php
现在只需打开它并在选项卡
现在,在开始您自己的 jquery 代码之前,必须使您的代码不与 mootools 和其他工具发生冲突,为此只需简单添加
jQuery.noConflict();
并放置jQuery
而不是$
为了 例子:if you want to add jQuery into your joomla made site then it is easy to load a jquery file like:
joomla/templates/rhuk_milkyway/index.php
now simple open it and add the following code after<link>
tab<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
now before starting your own jquery codes it is must to make your codes without conflicting with mootools and other, and for this just simple add
jQuery.noConflict();
and placejQuery
instead of$
for example: