鏈接
[html]
<?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.'","你確定要刪除這條消息嗎?")'))?>
jq
[html]
<script>
//單項刪除確認框
function art_del_confirm(url,message){
message = message?message:'你確定要刪除這條數據嗎?';
art.dialog({
title: '確認刪除',
okValue:'確認',
cancelValue:'取消',
width: 230,
height: 100,
fixed: true,
content: message,
ok: function () {
window.location.href=url;
return true;
},
cancel: function () {
return true;
},
});
}
</script>
效果圖