作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个功能:
<script type="text/javascript">
$('.infinite-container').waypoint('infinite', {
container: 'auto',
items: '.infinite-item',
more: '.infinite-more-link',
offset: 'bottom-in-view',
loadingClass: 'infinite-loading',
onBeforePageLoad: $.noop,
onAfterPageLoad: $.noop
});
</script>
我想调用一些其他函数,例如我想调用这个:
<script>
$(document).ready(function() {
$('.container').stickem();
});
</script>
为了调用它,我想在 onAfterPageLoad 事件中替换 $.noop
它看起来像这样吗?
onAfterPageLoad: $.stickem()
javascript/jquery 的 super 新手,如果你不知道的话。
最佳答案
将您的代码包装在一个函数中,插件将在 onAfterPageLoad
事件触发时调用该函数:
onAfterPageLoad: function() {
$('.container').stickem();
}
关于javascript - 如何在另一个函数中调用一个jquery函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16888365/
我是一名优秀的程序员,十分优秀!