scroll()不起作用,但如果服务器重启(通过更新代码)或者我在chrome控制台中运行代码,则它会工作一次。
Template.chatBubble.onRendered(function() {
Tracker.autorun(function () {
if(Session.get('chatBubble')){
$('.textArea').scroll(function() {
console.log('is scrolling');
}
});});
HTML
{{#if isChatbubble}}
{{> chatBubble}}
{{/if}
p.s我使用滚动分页。非常感谢你
答案 0 :(得分:1)
试试这个。
Meteor.setTimeout(function(){
$('.textArea').scroll(function() {
console.log('is scrolling');
}
},0);