How to add jQuery in JS file

后端 未结 19 751
星月不相逢
星月不相逢 2020-12-04 05:47

I have some code specific to sorting tables. Since the code is common in most pages I want to make a JS file which will have the code and all the pages using it can referen

19条回答
  •  星月不相逢
    2020-12-04 06:22

    I believe what you want to do is still to incude this js file in you html dom, if so then this apporach will work.

    1. Write your jquery code in your javascript file as you would in your html dom
    2. Include jquery framework before closing body tag
    3. Include javascript file after including jqyery file

    Example: //js file

         $(document).ready(function(){
         alert("jquery in js file");
         });
    

    //html dom

        
       
    
       
       
       
    

提交回复
热议问题