我现在的代码:
<?php echo anchor('admin/delete_msg/'.$obj->id, 'DELETE MESSAGE', array('onclick' => 'return confirm(\'Are you sure?\');', 'class' => 'delete-button')); ?>
但我想使用类似的东西:
<?php echo anchor('admin/delete_msg/'.$obj->id, '', array('onclick' => 'return confirm(\'Are you sure?\');', 'class' => 'delete-button')); ?>
所以没有“删除消息”文本,我可以使用图像代替。
但是,如果我将单引号留空,则链接将显示,例如http://localhost/project
有什么建议如何在锚函数中解决这个问题而不是通过<a href="...
?