我使用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
但它不起作用
提前致谢
答案 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));?>