我有以下链接到蛋糕中的删除功能:
<?php echo $this->Form->postLink(__(''), array('action' => 'delete', $website['Website']['website_id']), array('class' => 'icon-trash '), null, __('Are you sure you want to delete # %s?', $website['Website']['website_id'])); ?>
现在你可以看到应该有一条消息说:Are you sure you want to delete?
但是当我点击链接时,什么也没有发生(当然我的字段被删除了:P)
那么如何让链接显示一个确认框呢?