Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在滚动内部滚动时调用 ajax 函数并将结果附加到现有结果的底部。
作为参考,我在这里附上了一张图片。
我怎样才能做到这一点?
你也可以在没有 jQuery 的情况下使用类似的东西
window.onload = function(){ if(window.addEventListener){ document.addEventListener('DOMMouseScroll', moveObject, false); } var myDiv = document.getElementById("myDiv"); myDiv.onmousewheel = ajaxFunction(); }