我是 javascript 的初学者,现在我正在学习 railscast。我有问题如何编写这个脚本,用咖啡脚本写成普通的 JS。有人可以这样做:
jQuery ->
if $('.pagination').length
$(window).scroll ->
url = $('.pagination .next_page').attr('href')
if url && $(window).scrollTop() > $(document).height() - $(window).height() - 50
$('.pagination').text("Fetching more products...")
$.getScript(url)
$(window).scroll()
$('.tooltip').tooltipster(
animation: 'grow'
);
我尝试使用“ jQuery(function($) { ”,但它不起作用。