console.log("LX");
$(".team").hover(function(){
console.log("T");
$(".shadow").css("display","block")
},function(){$(".shadow").css("display","none")});
});
This is the code in jqueryShow.js. The console can display the two letters LX, but the subsequent code cannot work. How to solve this problem?
There is absolutely no problem with angularJS referencing jQuery. You can see it in the angular.js file. After angularJS is started, it will look for whether an external jQuery is referenced. If an external jQuery is referenced, the external one is used. It could be other issues.