Tôi biết rằng jQuery đã được tải, vì tôi có thể tắt $
'jQuery' và mọi thứ hoạt động như mong đợi, nhưng đây sẽ là một kịch bản lộn xộn nếu tôi không thể sửa lỗi này
Kịch bản này:
jQuery(document).ready(function(){
$("ul.vimeo_desc_feed li a").click(function(){
alert($(this).attr('href'));
return false;
})
});
Tạo ra lỗi $ is not a function
Kịch bản này:
jQuery(document).ready(function(){
jQuery("ul.vimeo_desc_feed li a").click(function(){
alert(jQuery(this).attr('href'));
return false;
})
});
hoạt động tốt