我有一个jquery滑块。将我的站点上传到Web服务器后,我在全局变量上得到错误:
未捕获的ReferenceError:未定义项目
上传网站之前没有问题 单击滚动滑块时出现错误。
这是代码:
$(function () {
$('.countrySelection-paddle-right').click(function () {
$("#countrySelection-items").animate({
scrollLeft: '+=' + items // the error is on this line.
});
});
$('.countrySelection-paddle-left').click(function () {
$("#countrySelection-items").animate({
scrollLeft: "-=" + items // the error is on this line.
});
});
})