CodeIgniter and Javascript/Jquery Library

前端 未结 9 838
粉色の甜心
粉色の甜心 2021-02-12 11:51

As title said, I\'m trying to figure out how to use javascript and jquery libraries on CI.

Following instruction in the docs, I load the library in my controller:

9条回答
  •  情深已故
    2021-02-12 12:21

    Use:

    $this->load->library('javascript/jquery');
    

    instead of:

    $this->load->library('jquery');
    

    This will load your jQuery library.

提交回复
热议问题