1.链接
'c_06c','onclick'=>'return art_del_confirm("/company/msglog/delete/id/'.$data->zml_id.'","你确定要删除这条消息吗?")'))?>
2.jq
<script> <BR>//单项删除确认框 <BR>function art_del_confirm(url,message){ <BR>message = message?message:'你确定要删除这条数据吗?'; <BR>art.dialog({ <BR>title: '确认删除', <BR>okValue:'确认', <BR>cancelValue:'取消', <BR>width: 230, <BR>height: 100, <BR>fixed: true, <BR>content: message, <BR>ok: function () { <BR>window.location.href=url; <BR>return true; <BR>}, <BR>cancel: function () { <BR>return true; <BR>}, <BR>}); <BR>} <BR></script>
效果图