如何在 Yii 2.0 中将 jQuery 添加到我的页面?
在 Yii 1.x 中你可以使用:
Yii::app()->clientScript->registerCoreScript('jquery');
我已经尝试用自己的 View 类覆盖并尝试在那里注册 jQuery,但它没有显示在我的 html 页面中:
namespace frontend\components;
/**
* This is the base view object, it extends the yii\web\View so you can add custom view stuff here.
*/
class BaseView extends \yii\web\View {
public function init()
{
parent::init();
\yii\web\JqueryAsset::register($this);
}
}