yii2 HTML组手
Posted pengcx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2 HTML组手相关的知识,希望对你有一定的参考价值。
1、样式和脚本
1.1 Yii 提供两个方法用于生成包含内联样式和脚本代码的标签。
<?= html::style(‘.danger { color: #f00; }‘) ?>
Gives you
<style>.danger { color: #f00; }</style>
<?= Html::script(‘alert("Hello!");‘, [‘defer‘ => true]);
Gives you
<script defer>alert("Hello!");</script>
1.2 外联 css 样式文件、js文件
<?= Html::cssFile(‘@web/css/ie5.css‘, [‘condition‘ => ‘IE 5‘]) ?>
generates
<!--[if IE 5]>
<link href="http://example.com/css/ie5.css" />
<![endif]-->
<?= Html::jsFile(‘@web/js/main.js‘) ?>
以上是关于yii2 HTML组手的主要内容,如果未能解决你的问题,请参考以下文章