日期:2014-05-16 浏览次数:20589 次
function editCustomerDialog(url,type){
var titleText="修改客户资料";
if(type==1){
titleText="查看客户资料";
}
$.ajax({
global: false,
url:url+"&random="+Math.random(),
type: 'post',
dataType: 'html',
timeout: 10000,
success: function(res){
$("#messageTex").html(res);
$("#messageTex").load(url);
$("#messageTex").dialog({
autoOpen:false,
title:""+titleText,
modal:true,
width:850,
cache:false,
resizable:false,
close:function(event, ui) { $(this).dialog("destroy");}
});
$("#messageTex").dialog("open");
}
});
}