cakephp中外部js文件中的图像声明

时间:2012-06-10 17:10:22

标签: javascript cakephp

我将图像声明为

  <?php echo $this->Html->image('buttonaft.png', array('alt'=> __('img', true), 'border' => '0'));  ?>

在一个javascript文件中,将由cakephp中的default.ctp读取

代码无法读取图像。

1 个答案:

答案 0 :(得分:0)

尝试这样给..

但请确保您提供正确的路径。

echo $html->image('image.png', array('url' => '/' . IMAGES_URL . 'image.png'));

您也可以在1.2

中执行此操作
echo $html->link(
    $html->image('img.png'),
    'img.png',
    array(),
    null, 
    false
  );

或1.3

echo $html->link(
    $html->image('img.png'),
    'img.png',
    array(),
    array( 'escape' => false ),     
  );