我有很多次使用的代码:
$(window).resize(function() {
//mycode
});
但是这次我有一个“$ is not defined”错误,你能帮我理解为什么(我在这个网站上使用$(window)工作的其他功能:$(window).scrollTop( )运作良好)?
我确实尝试过使用:
$(document).ready(function () {
//blabla
});
我的jQuery导入是这样的:
var script = document.createElement('script');
script.src = 'http://code.jquery.com/jquery-1.11.0.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
感谢您的帮助
答案 0 :(得分:0)
也许试试:
//jQuery import
script.onload = function() {
$(document).ready(function () {
//blabla
});
};