[Yii2] Yii2单独加载CSS和JS

2024-08-27 00:48
文章标签 加载 css js frontend 单独 yii2

本文主要是介绍[Yii2] Yii2单独加载CSS和JS,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Yii2 使用用AssetBundle来管理资源,这个暂且不表。
上面的方法通常是在layouts文件中进行注册,这将无法处理需要单独加载的CSS,JS样式。

单独使用CSS:

$cssString = ".main{display:block;}";  
$this->registerCss($cssString); 

单独使用js:

<?php $this->beginBlock('test') ?>  function hello(){console.log('hello');} 
<?php $this->endBlock() ?>  
<?php $this->registerJs($this->blocks['test'], \yii\web\View::POS_END); ?>  

或使用类似上面css的方法:

<?php
$js = 'console.log('hello')';
$this->registerJs($js);
?>

但是上面的方法仍然面临较大的局限性,在多数情况下单独引入文件无疑是更加合适的方式:

//注册资源包
AppAsset::register($this);$this->registerCssFile('@web/style/style.css',['depends'=>['backend\assets\AppAsset']]);  
$this->registerCssFile('@web/style/style.css');$this->registerJsFile('@web/script/jquery.js',['depends'=>['backend\assets\AppAsset']]);
$this->registerJsFile('@web/script/jquery.js'); //添加POSITION定义 文件的出现位置
$this->registerJsFile('@web/script/jquery.js',['depends'=>['backend\assets\AppAsset'],'position'=>$this::POS_HEAD]);
/*** @event Event an event that is triggered by [[beginBody()]].*/const EVENT_BEGIN_BODY = 'beginBody';/*** @event Event an event that is triggered by [[endBody()]].*/const EVENT_END_BODY = 'endBody';/*** The location of registered JavaScript code block or files.* This means the location is in the head section.*/const POS_HEAD = 1;/*** The location of registered JavaScript code block or files.* This means the location is at the beginning of the body section.*/const POS_BEGIN = 2;/*** The location of registered JavaScript code block or files.* This means the location is at the end of the body section.*/const POS_END = 3;/*** The location of registered JavaScript code block.* This means the JavaScript code block will be enclosed within `jQuery(document).ready()`.*/const POS_READY = 4;/*** The location of registered JavaScript code block.* This means the JavaScript code block will be enclosed within `jQuery(window).load()`.*/const POS_LOAD = 5;/*** This is internally used as the placeholder for receiving the content registered for the head section.*/const PH_HEAD = '<![CDATA[YII-BLOCK-HEAD]]>';/*** This is internally used as the placeholder for receiving the content registered for the beginning of the body section.*/const PH_BODY_BEGIN = '<![CDATA[YII-BLOCK-BODY-BEGIN]]>';/*** This is internally used as the placeholder for receiving the content registered for the end of the body section.*/const PH_BODY_END = '<![CDATA[YII-BLOCK-BODY-END]]>';

这篇关于[Yii2] Yii2单独加载CSS和JS的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1110164

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

在JS中的设计模式的单例模式、策略模式、代理模式、原型模式浅讲

1. 单例模式(Singleton Pattern) 确保一个类只有一个实例,并提供一个全局访问点。 示例代码: class Singleton {constructor() {if (Singleton.instance) {return Singleton.instance;}Singleton.instance = this;this.data = [];}addData(value)

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

Vue3项目开发——新闻发布管理系统(六)

文章目录 八、首页设计开发1、页面设计2、登录访问拦截实现3、用户基本信息显示①封装用户基本信息获取接口②用户基本信息存储③用户基本信息调用④用户基本信息动态渲染 4、退出功能实现①注册点击事件②添加退出功能③数据清理 5、代码下载 八、首页设计开发 登录成功后,系统就进入了首页。接下来,也就进行首页的开发了。 1、页面设计 系统页面主要分为三部分,左侧为系统的菜单栏,右侧

Node.js学习记录(二)

目录 一、express 1、初识express 2、安装express 3、创建并启动web服务器 4、监听 GET&POST 请求、响应内容给客户端 5、获取URL中携带的查询参数 6、获取URL中动态参数 7、静态资源托管 二、工具nodemon 三、express路由 1、express中路由 2、路由的匹配 3、路由模块化 4、路由模块添加前缀 四、中间件

Flutter 进阶:绘制加载动画

绘制加载动画:由小圆组成的大圆 1. 定义 LoadingScreen 类2. 实现 _LoadingScreenState 类3. 定义 LoadingPainter 类4. 总结 实现加载动画 我们需要定义两个类:LoadingScreen 和 LoadingPainter。LoadingScreen 负责控制动画的状态,而 LoadingPainter 则负责绘制动画。