gpt4 book ai didi

php - Zend Framework CSS 问题

转载 作者:行者123 更新时间:2023-11-28 13:45:19 24 4
gpt4 key购买 nike

我是 ZF 的新手,但一直在研究我遇到的一个具体问题。我目前正在尝试通过 layout.phtml 文件将样式表附加到我的站点。当 URL 保留在 Controller 的索引操作中时它工作正常但是如果我转到站点/ Controller /方法样式表显示不正确。我相信我所做的一切都是正确的。我在我的网站上使用了以下代码来附加样式表:

<?php
$this->headLink()->appendStylesheet($this->baseUrl('stylesheets/style.css'))
->appendStylesheet($this->baseUrl('stylesheets/jplayer.css'))
->appendStylesheet($this->baseUrl('stylesheets/contact.css'));
echo $this->headLink();
$this->headScript()->appendFile("http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js");
echo $this->headScript();
?>

我也曾尝试从 Controller 操作中减去 echo 部分来执行此操作,这最终会破坏整个页面。

编辑:我现在显示了 css,但字体不会显示正确的字体。有没有人遇到过这种情况,这可能是我的 css 指向错误路径或某处字体损坏的一部分。

最佳答案

将样式表文件夹保存在元素的公共(public)目录中

 <?php

$this->headLink()->appendStylesheet('stylesheets/style.css');
$this->headLink()->appendStylesheet('stylesheets/jplayer.css');
$this->headLink()->appendStylesheet('stylesheets/contact.css');
echo $this->headLink();
$this->headScript()->appendFile("http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js");
echo $this->headScript();

?>

希望能解决你的问题

关于php - Zend Framework CSS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11943792/

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