加载中...

Yii-自定义删除确认弹框(zyd)


  1. 链接
    1. <?php echo CHtml::link(Yii::t('cmp','Delete'),'javascript:',array('class'=>'c_06c','onclick'=>'return art_del_confirm("/company/msglog/delete/id/'.$data->zml_id.'","你确定要删除这条消息吗?")'))?>

  2. jq
    1. <script>
    2. //单项删除确认框
    3. function art_del_confirm(url,message){
    4. message = message?message:'你确定要删除这条数据吗?';
    5. art.dialog({
    6. title: '确认删除',
    7. okValue:'确认',
    8. cancelValue:'取消',
    9. width: 230,
    10. height: 100,
    11. fixed: true,
    12. content: message,
    13. ok: function () {
    14. window.location.href=url;
    15. return true;
    16. },
    17. cancel: function () {
    18. return true;
    19. },
    20. });
    21. }
    22. </script>

  3. 效果图


还没有评论.