var _alert_iconCss = "tipmsg_icoInfo";
var _confirm_iconCss = "tipmsg_icoConfirm";
var _error_iconCss = "tipmsg_icoError";
var _warning_iconCss = "tipmsg_icoWarning";
functionDialogInit(type, msg) {
var iconCss = "";
스위치(유형) {
case "confirm" : iconCss = _confirm_iconCss; 부서지다;
케이스 "오류" : iconCss = _error_iconCss; 부서지다;
케이스 "경고" : iconCss = _warning_iconCss; 부서지다;
기본값: iconCss = _alert_iconCss; 부서지다;
}
var htmlStr = "
";
htmlStr을 반환합니다.
}
function Alert(msg, okCallback) {
var title = "提示";
var 유형 = "경고";
var html =dialogInit(type, msg);
var div = $("body").find("#" type "Div");
div.remove();
$('body').append($(html));
var 버튼 = {"确정" : function () {
if(okCallback) okCallback();
$(this).dialog("닫기");
}
};
$("#" type "Div").dialog({
modal : true,
title : title,
buttons : 버튼
});
}
function 확인(msg, okCallback, cancelCallback) {
var title = "确认";
var type = "확인";
var html =dialogInit(type, msg);
var div = $("body").find("#" type "Div");
div.remove();
$('body').append($(html));
var 버튼 = {"确정" : function () {
if(okCallback) okCallback();
$(this).dialog("닫기");
},
"取消" : function () {
if(cancelCallback) cancelCallback();
$(this).dialog("닫기");
}
};
$("#" type "Div").dialog({
modal : true,
title : title,
buttons :button
});
}
function Error(msg, okCallback) {
var title = "错误";
var 유형 = "오류";
var html =dialogInit(type, msg);
var div = $("body").find("#" type "Div");
div.remove();
$('body').append($(html));
var 버튼 = {"确정" : function () {
if(okCallback) okCallback();
$(this).dialog("닫기");
}
};
$("#" type "Div").dialog({
modal : true,
title : title,
buttons : 버튼
});
}
function Warning(msg, okCallback) {
var title = "警告";
var 유형 = "경고";
var html =dialogInit(type, msg);
var div = $("body").find("#" type "Div");
div.remove();
$('body').append($(html));
var 버튼 = {"确정" : function () {
if(okCallback) okCallback();
$(this).dialog("닫기");
}
};
$("#" type "Div").dialog({
modal : true,
title : title,
buttons : 버튼
});
}