Include CSS,javascript file in Yii Framework

前端 未结 18 1794
[愿得一人]
[愿得一人] 2020-11-29 15:46

How to include a Javascript or CSS file in Yii Framework?

I want to create a page on my site that has a little Javascript application running, so I want to include <

18条回答
  •  眼角桃花
    2020-11-29 16:01

    Add the CSS and JS in The Layout Folder.Access anywhere in the project

      
        theme->baseUrl;
            Yii::app()->clientScript->registerCoreScript("jquery");
        ?>
    
            " rel="stylesheet" media="all" />
    
    
    
    clientScript->registerCoreScript("jquery"); ?>
     -->
    
    

提交回复
热议问题