Solution to errors after referencing jquery framework

  • 2021-07-09 06:52:33
  • OfStack

Problem Description: When the jquery framework is referenced, the js of the page does not work properly.

My last solution: Because the code when referring to the framework of jquery is


<script type="text/javascript" src="resources/js/jquery/jquery-1.9.1.min.js" />

Change to the following reference mode


<script type="text/javascript" src="resources/js/jquery/jquery-1.9.1.min.js"></script>

Problem solving.


Related articles: