引入方式有多種:
1、可以直接在檢視頁面上引入
<?php use yii\helpers\Html;?><?=Html::cssFile('@web/css/index.css')?><?=Html::jsFile('@web/js/jquery.min.js')?>
2 、可以直接寫原生程式碼引入,路徑是專案目錄/web/css 或/js
<script src="js/nav.js"></script>
3、可以使用assetBundle管理css樣式及js腳本
#資源包定義:basic/assets/AppAsset.php
<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace app\assets; use yii\web\AssetBundle; /** * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */ class AppAsset extends AssetBundle{ public $basePath = '@webroot'; public $baseUrl = '@web'; public $css = [ 'css/site.css', 'css/base.css' ]; public $js = [ 'js/sliders.js' ]; public $depends = [ //依赖包,没有可以不写 'yii\web\YiiAsset', 'yii\bootstrap\BootstrapAsset', ]; //定义按需加载JS方法,注意加载顺序在最后 public static function addScript($view, $jsfile) { $view->registerJsFile($jsfile, [AppAsset::className(), 'depends' => 'api\assets\AppAsset']); } //定义按需加载css方法,注意加载顺序在最后 public static function addCss($view, $cssfile) { $view->registerCssFile($cssfile, [AppAsset::className(), 'depends' => 'api\assets\AppAsset']); } }
在視圖文件開頭寫入:
<?php use yii\helpers\Html;use app\assets\AppAsset; AppAsset::register($this); ?>
到現在為止,我們可以在瀏覽器上測試,發現並沒有引入css和js文件,這裡要注意了,我們還需要最後一步:
在視圖文件中我們要加入一下程式碼(註:如果我們使用公共視圖文件,可以加入到公共視圖文件,如果沒有使用,可以放到單獨頁面中)
<?php$this->beginPage() ?> <?php $this->head() ?> <?php $this->beginBody() ?> <?php $this->endBody() ?> <?php $this->endPage() ?>
4、不需要在資源包管理器中定義方法,只要在視圖頁面中直接引入即可
AppAsset::register($this); //css定义一样 $this->registerCssFile('@web/css/font-awesome.min.css',['depends'=>['api\assets\AppAsset']]); $this->registerJsFile('@web/js/jquery-ui.custom.min.js',['depends'=>['api\assets\AppAsset']]); //$this->registerJsFile('@web/js/jquery-ui.custom.min.js',['depends'=>['api\assets\AppAsset'], 'position'=>$this::POS_HEAD]);
相關文章教學建議: yii教學
以上是yii2怎麼引入css和js文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!