gpt4 book ai didi

zend-framework - Zend Framework 以 HTML5 方式附加脚本和样式表

转载 作者:搜寻专家 更新时间:2023-10-31 08:38:05 24 4
gpt4 key购买 nike

我想知道使用 Zend Framework 的 View 助手,......下面的代码......

$this->headLink()->prependStylesheet("css/style.css")
->prependStylesheet("css/prettify.css")
->prependStylesheet("css/960.css")
->prependStylesheet("css/text.css")
->prependStylesheet("css/reset.css");
$this->headScript()->prependFile("js/site.js")
->prependFile("http://www.google.com/jsapi");
echo $this->headLink();
echo $this->headScript();

这是输出

<link href="css/reset.css" media="screen" rel="stylesheet" type="text/css" >
<link href="css/text.css" media="screen" rel="stylesheet" type="text/css" >
<link href="css/960.css" media="screen" rel="stylesheet" type="text/css" >
<link href="css/prettify.css" media="screen" rel="stylesheet" type="text/css" >
<link href="css/style.css" media="screen" rel="stylesheet" type="text/css" >
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript" src="js/site.js"></script>

我如何在不需要 type="text/javascript"rel="stylesheet" 的情况下以 html5 方式回显链接和脚本

最佳答案

您可以创建自己的助手,并将其放在您的 View /helpers/Headlink.php 中,扩展原始的 Zend Framework .. 并覆盖您希望改变的部分。

肯定有比编辑框架文件更好的选择......

关于zend-framework - Zend Framework 以 HTML5 方式附加脚本和样式表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3252761/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com