0

我需要使用 cakephp 2.3 生成以下 html 标记请提供任何帮助来生成它。我在img文件夹中有一张图片,它作为 href 属性值出现。

 <link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144-precomposed.png">

我尝试使用 meta 的不同选项,但我无法解决图像路径问题。

4

2 回答 2

4
echo $this->Html->meta(array(
    'rel' => 'apple-touch-icon-precomposed',
    'sizes' => '144x144',
    'link' => '/img/apple-touch-icon-144-precomposed.png',
));
于 2013-04-25T14:31:26.943 回答
0

您可以通过以下方式构建任何 Html 标签HtmlHelper::taghttp ://book.cakephp.org/2.0/en/core-libraries/helpers/html.html#HtmlHelper::tag

于 2013-03-28T08:06:55.670 回答