我正在尝试使用jquery waypoint插件,但是我没有得到waypoint.reached回调触发。请看看我在jsfiddle的例子:
回调函数未执行:
$('#wrapper').delegate('.waypoint', 'waypoint.reached', function (event, direction) {
alert("test");
});
答案 0 :(得分:1)
您在哪里阅读了此waypoint.reached
事件?我在the documentation或the source找不到关于此内容的任何内容。你不能只是组成一个事件名称,并希望它能够自动神奇地工作。
根据the documentation,您需要将处理程序作为第一个参数传递给$.waypoint
:
$('.waypoint').waypoint(function(direction) {
console.log("waypoint reached");
});
如果您还需要设置其他选项,则可以将该对象作为第二个参数传递,或者只传递options对象和handler
属性:
$('.waypoint').waypoint(function(direction) {
console.log("waypoint reached");
}, {
offset: 10
});
// or
$('.waypoint').waypoint({
handler: function(direction) {
console.log("waypoint reached");
},
offset: 10
});
Here's a fiddle.打开你的控制台,滚动一下,你应该得到日志消息。