我想在头文件上加载我的jquery文件,我的所有jquery文件都是通过Yii2资源加载的。任何人都知道吗?
答案 0 :(得分:2)
在AppAsset文件中添加:
public $depends = [
'yii\web\JqueryAsset'
];
答案 1 :(得分:0)
将该行添加到AppAsset文件
namespace app\assets;
use yii\web\AssetBundle;
class AppAsset extends AssetBundle
{
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [
'css/site.css',
];
public $js = [
];
public $depends = [
'yii\web\YiiAsset',
'yii\bootstrap\BootstrapAsset',
'yii\web\jQueryAsset' //I means this line
];
}