在cakephp ajax链接中添加图像

时间:2011-09-14 10:23:41

标签: ajax cakephp

我使用cakephp ajax链接来调用页面

<div id="post"> </div> <?php echo $ajax->link( 'View Post', array( 'controller' => 'posts', 'action' => 'view', 1), array( 'update' => 'post', 'position' => 'top' ) ); ?> 我想显示图像而不是View Post。我使用过$html->imge但它不起作用 提前致谢

1 个答案:

答案 0 :(得分:5)

<? echo $ajax->link($html->image('ragister-icon.png',array('title' => 'My Account','alt' => 'My Account','class' => 'lock-img')),array( 'controller' => 'posts', 'action' => 'view', 1),array( 'update' => 'post', 'position' => 'top' ,'escape'=>false));?>