Typecho主题前台实现删除文章功能 指数:123℃ 日期:2024/06/27 代码将下面的代码放到 post.php 中即可<?php \Typecho\Widget::widget('Widget_Security')->to($security); ?> <a href="<?php $security->index('/action/contents-post-edit?do=delete&cid='.$this->cid); ?>">删除文章</a> 点击按钮立即删除文章!完善上面的代码虽然实现了功能,但却泯灭了人性!下面我们完善下人性部分,代码改为<?php \Typecho\Widget::widget('Widget_Security')->to($security); ?> <a href="<?php $security->index('/action/contents-post-edit?do=delete&cid='.$this->cid); ?>" onclick="javascript:return p_del()">删除文章</a> <script> function p_del() { var msg = "您真的确定要删除吗?"; if (confirm(msg)==true){ return true; }else{ return false; } } </script> 这样弄好,点击按钮会弹出确认框,问其是否删除文章,用户确认后才会删除,比较符合操作习惯! 最后更新时间为: 4个月前 (2024-06-27)
评论已关闭