jquery javascript doesnt work in codeigniter

前端 未结 3 1083
孤独总比滥情好
孤独总比滥情好 2021-01-26 08:41

Hi everybody and happy thanksgivingday !

i am some problem to include this script in codeigniter:



        
3条回答
  •  执念已碎
    2021-01-26 09:15

    First of all you cannot directly call any files which is inside of application folder. Create a new folder js in your home directory and move your jquery.js into that i.e., root_folder -> js -> jquery.js Then try this example

    Controller

    load->view('test');
        }
    
        public function hello()
        {
                $this->load->view('data');
        }
    }
    

    View ( test.php )

    
    
    
        test project
    
    
    
    This content will replaced by your interval response

    2nd view file ( data.php )

    Hello world

提交回复
热议问题