我已經寫了一些由Jquery編寫的代碼,但由於它找不到Jquery的原因。我已將$改爲Jquery,但仍然出現相同的錯誤。如果我將其改爲純JS,那麼對此有何評論?找不到Jquery
var listener = throttle(300, function() {
slotsAtlantic.forEach(function (item) {
var $item = jQuery('#' + item.id);
if ($item.length) {
var $parent = $item.parent();
var index = slotsAtlantic.indexOf(item);
if ($parent.is(':visible') && ((window.scrollY || window.pageYOffset) >= ($parent.offset().top - jQuery(window).height() - 300))) {
googletag.cmd.push(function() {
googletag.pubads().refresh([item.slot]);
});
slotsAtlantic.splice(index, 1);
}
}
});
});
哪裏是你的HTML的腳本標籤? –
你有HTML中的jQuery腳本標記嗎? – litel
http://www.w3schools.com/jquery/jquery_get_started.asp – DDan