首页 > 代码库 > phalcon: 资源文件管 理 引入css,js
phalcon: 资源文件管 理 引入css,js
<?phpclass IndexController extends Phalcon\Mvc\Controller{ public function index() { //添加本地css资源 $this->assets ->addCss(‘css/style.css‘) ->addCss(‘css/index.css‘); //添加本地js资源 $this->assets ->addJs(‘js/jquery.js‘) ->addJs(‘js/bootstrap.min.js‘); }}
phtml:
<html> <head> <title>Some amazing website</title> <?php $this->assets->outputCss() ?> </head> <body> <!-- ... --> <?php $this->assets->outputJs() ?> </body><html>
方法二:远程文件
<?phppublic function indexAction(){ //添加远程及本地资源 $this->assets ->addCss(‘//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css‘, true ) ->addCss(‘css/style.css‘, false );}
phtml:
同上
方法三:
<?php//html头部的js资源$this->assets ->collection(‘header‘) ->addJs(‘js/jquery.js‘) ->addJs(‘js/bootstrap.min.js‘);//html尾部的js资源$this->assets ->collection(‘footer‘) ->addJs(‘js/jquery.js‘) ->addJs(‘js/bootstrap.min.js‘);
phtml:
<html> <head> <title>Some amazing website</title> <?php $this->assets->outputJs(‘header‘) ?> </head> <body> <!-- ... --> <?php $this->assets->outputJs(‘footer‘) ?> </body><html>
phalcon: 资源文件管 理 引入css,js
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。